We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167d417 commit a8f17eaCopy full SHA for a8f17ea
2 files changed
tests/runner.cpp
@@ -10,9 +10,9 @@
10
11
std::string runInterpreter(const std::string& file) {
12
#if defined(_WIN32)
13
- std::string command = "eigerc -s \"" + file + "\"";
+ std::string command = "eigerc -s \"" + file + "\" 2>&1";
14
#else
15
- std::string command = "./eigerc -s \"" + file + "\"";
+ std::string command = "./eigerc -s \"" + file + "\" 2>&1";
16
#endif
17
18
FILE* pipe = popen(command.c_str(), "r");
tests/variables.eig.out
@@ -4,4 +4,4 @@
4
5
100
6
20
7
-RUNTIME_ERROR: Variable y is not defined at line 21
+RUNTIME_ERROR: Symbol y is unbound at line 21
0 commit comments