i liked my tab complete

This commit is contained in:
George Hotz 2014-11-22 22:39:23 +00:00
parent f70a1984ac
commit a17d94fccc
5 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import qira_program
import time
def test():
program = qira_program.Program("test/bin/loop")
program = qira_program.Program("qira_tests/bin/loop")
program.execqira(shouldfork=True)
time.sleep(1)

View File

@ -9,7 +9,7 @@ LIMIT = 10000
# register size = 4, register count = 9
def test():
t = qiradb.Trace("test/bin/hello_trace", 0, 4, 9, False)
t = qiradb.Trace("qira_tests/bin/hello_trace", 0, 4, 9, False)
print "trace created"
while not t.did_update():

View File

@ -3,7 +3,6 @@ sys.path.append("static2/")
import static2
def test():
static = static2.Static('test/bin/loop', debug=True)
static = static2.Static('qira_tests/bin/loop', debug=True)
static.process()