Use /usr/bin/env trick to find python. Patch by Krister Walfridsson.

llvm-svn: 75271
This commit is contained in:
Eli Friedman
2009-07-10 20:15:12 +00:00
parent 3554b5a37c
commit 837f574ee9
8 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
from pprint import pprint
import random, atexit, time

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""CaptureCmd - A generic tool for capturing information about the
invocations of another program.

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import subprocess

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os
import re

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os, sys, re

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
"""
MultiTestRunner - Harness for running multiple tests in the simple clang style.

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
# Source: http://code.activestate.com/recipes/475116/, with
# modifications by Daniel Dunbar.

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
#
# TestRunner.py - This script is used to run arbitrary unit tests. Unit
# tests must contain the command used to run them in the input file, starting