aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-06-17 17:06:49 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-06-17 17:06:49 -0700
commit02382e49cb9ec756b1b50f350c956d82411a1c67 (patch)
tree958f2b93738ee436f7f462fc4a399db523177dc8 /tests
parenta16f6f5f88cc3a94ecac720ffa01ccf2a4750a62 (diff)
parentf06dfed6a60d67360fb2daca0d4bbe02caa0149c (diff)
Merge pull request #1280 from juj/abs_path_check
Improve absolute path warning detection to work on Windows, and make the...
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index b974be78..f22fd86b 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -10530,7 +10530,7 @@ f.close()
(['-Lsubdir/something'], False),
([], False)]:
err = Popen([PYTHON, EMCC, 'main.c'] + args, stderr=PIPE).communicate()[1]
- assert ('-I or -L of an absolute path encountered. If this is to a local system header/library, it may cause problems (local system files make sense for compiling natively on your system, but not necessarily to JavaScript)' in err) == expected, err
+ assert ('encountered. If this is to a local system header/library, it may cause problems (local system files make sense for compiling natively on your system, but not necessarily to JavaScript)' in err) == expected, err
def test_local_link(self):
# Linking a local library directly, like /usr/lib/libsomething.so, cannot work of course since it