diff options
Diffstat (limited to 'scripts/fuzz_relooper.py')
-rwxr-xr-x | scripts/fuzz_relooper.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/fuzz_relooper.py b/scripts/fuzz_relooper.py index 151f39d61..62db2a3c5 100755 --- a/scripts/fuzz_relooper.py +++ b/scripts/fuzz_relooper.py @@ -372,7 +372,8 @@ int main() { stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0] print '-' - slow_out = subprocess.Popen(['nodejs', 'fuzz.slow.js'], + node = os.getenv('NODE', 'nodejs') + slow_out = subprocess.Popen([node, 'fuzz.slow.js'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0] print '_' |