diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-10-29 16:21:41 +0100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-10-30 22:01:30 +0100 |
commit | 5182542126a5ad3c40d958b0b72cfa16f4e8bd25 (patch) | |
tree | d26bfee9fa5d0fca1810a8650e62dc5f16744d3a /tests/test_sanity.py | |
parent | 350550a5ccfacd19f512bca2ded186e143ea9579 (diff) |
tools: parse pre-release node.js version numbers
`node` binaries built from upstream git have a "-pre" suffix attached
to the version number. Fix the version parser to handle those.
Diffstat (limited to 'tests/test_sanity.py')
-rw-r--r-- | tests/test_sanity.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_sanity.py b/tests/test_sanity.py index a0fff252..a405c3a3 100644 --- a/tests/test_sanity.py +++ b/tests/test_sanity.py @@ -217,7 +217,11 @@ class sanity(RunnerCore): try: os.environ['EM_IGNORE_SANITY'] = '1' - for version, succeed in [('v0.7.9', False), ('v0.8.0', True), ('v0.8.1', True), ('cheez', False)]: + for version, succeed in [('v0.7.9', False), + ('v0.8.0', True), + ('v0.8.1', True), + ('v0.10.21-pre', True), + ('cheez', False)]: f = open(path_from_root('tests', 'fake', 'nodejs'), 'w') f.write('#!/bin/sh\n') f.write('''if [ $1 = "--version" ]; then |