Skip to content

Commit

Permalink
Make run.py only search in the run-pass directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbebenita committed Sep 8, 2010
1 parent 79e3856 commit 9b8d647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.py
Expand Up @@ -36,7 +36,7 @@

def getRustTests(filter):
tests = []
for root, dirnames, filenames in os.walk(rustTestDir):
for root, dirnames, filenames in os.walk(rustTestRunPassDir):
for filename in fnmatch.filter(filenames, filter + '.rs'):
tests.append(os.path.join(root, filename).
replace(rustDir + "/", ""));
Expand Down

0 comments on commit 9b8d647

Please sign in to comment.