We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e32df commit 874ef80Copy full SHA for 874ef80
test/truffle/integration/no_extra_output.sh
@@ -39,3 +39,19 @@ echo "Test loading many standard libraries"
39
40
$RUBY_BIN -w --experimental-options --lazy-default=false test/truffle/integration/no_extra_output/all_stdlibs.rb 1>temp.txt 2>&1
41
check $?
42
+
43
+echo "Test of the unexpected output to stderr."
44
+echo "To ensure there are no unexpected warnings for instance."
45
46
+jt --silent test specs fast --error-output error_output.txt 2>stderr.txt
47
+echo Error output:
48
+cat error_output.txt
49
50
+if [ -s stderr.txt ]; then
51
+ echo Extra output:
52
+ cat stderr.txt
53
+ exit 1
54
+else
55
+ echo No extra output
56
+ rm -f stderr.txt
57
+fi
0 commit comments