summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-11-08 15:49:31 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-11-08 15:49:31 +0000
commit0b0245c16019b0fde3f669260971b5e160fca38f (patch)
treed7517692899b78ffd39e73b38a2029d6f13d980e /progs
parent2c9e7ae38baacc6d5167bca53b4ae1ac23a766d0 (diff)
minor clean-up
Diffstat (limited to 'progs')
-rw-r--r--progs/tests/getprocaddress.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/progs/tests/getprocaddress.py b/progs/tests/getprocaddress.py
index e5d2fbbc6f5..987dfbcbbbd 100644
--- a/progs/tests/getprocaddress.py
+++ b/progs/tests/getprocaddress.py
@@ -1,12 +1,13 @@
#!/usr/bin/env python
-# $Id: getprocaddress.py,v 1.1 2002/11/08 15:35:47 brianp Exp $
+# $Id: getprocaddress.py,v 1.2 2002/11/08 15:49:31 brianp Exp $
# Helper for the getprocaddress.c test.
import re, string
+
def PrintHead():
print """
struct name_test_pair {
@@ -46,7 +47,6 @@ def FindTestFunctions():
v = re.search("^test_([a-zA-Z0-9]+)", line)
if v:
func = v.group(1)
- #print "Found -%s-" % func
functions.append(func)
f.close
return functions
@@ -72,7 +72,6 @@ def PrintFunctions(specFile, tests):
print ' { "-%s", NULL},' % category
prevCategory = category
-# if HaveTest("gl" + funcName):
if funcName in tests:
test = "test_%s" % funcName
else: