diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-31 20:08:15 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-31 20:08:15 -0700 |
commit | f121f7a6e7269468cbc648a07a3631bb85b5e348 (patch) | |
tree | a631e564ea085f3a284a3a177cc352bdab21778e /tests/runner.py | |
parent | cc8b65b0bea65ea6db9e175268c5196e42e10991 (diff) | |
parent | 292d1fe1461a61fd4f0d30e498ea85696df1bad7 (diff) |
Merge pull request #110 from BenoitT/patch-2
Added test for std::endl
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index cd87d3d3..e0362cd0 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2927,7 +2927,7 @@ if 'benchmark' not in str(sys.argv): int main() { - std::cout << "hello world"; + std::cout << "hello world" << std::endl; return 0; } ''' |