diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 20:19:08 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-01-16 20:19:08 -0800 |
commit | 01ad6e83b88fb4a272bf598ea9802eb001b34466 (patch) | |
tree | ccf9448456308748d226103f1d9012deb4353ba8 | |
parent | 3ca8dcd08e181c9926bee6e9fed90f5fb87a0ee9 (diff) |
temporarily add some libcxx source files to test_iostream
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 5679d1bc..3650c667 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -3833,7 +3833,8 @@ def process(filename): } ''' - self.do_run(src, 'hello world\n77.\n') + self.do_run(src, 'hello world\n77.\n', + additional_files=map(lambda f: path_from_root('system', 'lib', 'libcxx', f+'.cpp'), ['ios', 'iostream', 'locale'])) # XXX temporary def test_stdvec(self): src = ''' |