diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-02-19 11:59:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-02-19 11:59:52 -0800 |
commit | 5606427b7035a599f3a523ff22be22cbb9fbbca5 (patch) | |
tree | 85322499809086ff037e09ec4a7609f1f110716e /tests/runner.py | |
parent | 379953396230438ab975ca282c40b75f59017be9 (diff) |
fix test_structbyval
Diffstat (limited to 'tests/runner.py')
-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 7154756c..e9471a8b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -2424,7 +2424,7 @@ def process(filename): generated = open(os.path.join(self.get_dir(), 'src.cpp.o.js')).read() if self.emcc_args is None or self.emcc_args == []: # Optimized code is missing the warning comments assert 'Casting a function pointer type to another with a different number of arguments.' in generated, 'Missing expected warning' - assert 'void (i32, i32)* ==> void (%struct.point.0*)*' in generated, 'Missing expected warning details' + assert 'void (i32, i32)* ==> void (%struct.point*)*' in generated, 'Missing expected warning details' return raise Exception('We should not have gotten to here!') |