aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoitT <benoit.tremblay@frimastudio.com>2011-10-31 10:35:46 -0300
committerBenoitT <benoit.tremblay@frimastudio.com>2011-10-31 10:35:46 -0300
commit292d1fe1461a61fd4f0d30e498ea85696df1bad7 (patch)
tree016adeb3da5037f37b1bbbe8011d88d28bd93969 /tests
parentff75e6bd470dcd5a3c6c8945d43e348192f2c9d5 (diff)
Added test for std::endl
Diffstat (limited to 'tests')
-rw-r--r--tests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index f97934e9..8da2c8dd 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -2920,7 +2920,7 @@ if 'benchmark' not in str(sys.argv):
int main()
{
- std::cout << "hello world";
+ std::cout << "hello world" << std::endl;
return 0;
}
'''