summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2020-06-29 06:44:42 +0200
committerAkim Demaille <akim.demaille@gmail.com>2020-06-29 06:45:44 +0200
commit1ae4f1d3291b22466a20d1a2cce88b750ffbfb31 (patch)
treed73d0873aaf1b294a4e0f5834a7fd7aa55bfe4a9
parent160df55c569ccb13aaa13eb6e87e427f9a6cdc30 (diff)
downloadbison-1ae4f1d3291b22466a20d1a2cce88b750ffbfb31.tar.gz
tests: don't use $VERBOSE
It is used by the test suite itself, which results in this test failing. * tests/c++.at: Use $DEBUG, not $VERBOSE.
-rw-r--r--tests/c++.at2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/c++.at b/tests/c++.at
index 5cbbc91e..949bdeb6 100644
--- a/tests/c++.at
+++ b/tests/c++.at
@@ -46,7 +46,7 @@ template <typename T>
bool
check (const T& in, const std::string& s)
{
- const static bool verbose = getenv ("VERBOSE");
+ const static bool verbose = getenv ("DEBUG");
std::stringstream os;
os << in;
if (os.str () == s)