diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-17 19:48:01 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-17 19:48:01 -0700 |
commit | 5179ae5746bbb624f768b54ebe034d751005483e (patch) | |
tree | a792d6139cd6be55370fa839ef23c879c3eb97f0 | |
parent | 4eb81d21722e79d24321d52ff092bd09afbe141e (diff) |
fix test_emcc_compressed_file
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index dd211bd3..637a03d8 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -6306,7 +6306,7 @@ f.close() self.run_browser('page.html', 'You should see two cool numbers', '/report_result?1') def test_emcc_compressed_file(self): - open(os.path.join(self.get_dir(), 'datafile.txt'), 'w').write('''compress this please''') + open(os.path.join(self.get_dir(), 'datafile.txt'), 'w').write('compress this please' + (2000*'.')) open(os.path.join(self.get_dir(), 'main.cpp'), 'w').write(self.with_report_result(r''' #include <stdio.h> #include <string.h> |