From 4f11157aa4e6b3bccdc1ea2dca8e8f9f55bffcc7 Mon Sep 17 00:00:00 2001 From: "pschwartau%netscape.com" Date: Thu, 31 Oct 2002 01:01:20 +0000 Subject: [PATCH] Don't ever run shell.js files as tests; they are only utility files. git-svn-id: svn://10.0.0.236/trunk@132745 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/js/tests/jsDriver.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mozilla/js/tests/jsDriver.pl b/mozilla/js/tests/jsDriver.pl index b117c4ecb3b..43dd42aba3b 100755 --- a/mozilla/js/tests/jsDriver.pl +++ b/mozilla/js/tests/jsDriver.pl @@ -151,6 +151,9 @@ sub execute_tests { my $file_param = " -f "; my ($last_suite, $last_test_dir); + # Don't run any shell.js files as tests; they are only utility files + @test_list = grep (!/shell\.js$/, @test_list); + &status ("Executing " . ($#test_list + 1) . " test(s)."); foreach $test (@test_list) {