diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-22 09:59:25 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-22 09:59:33 +0200 |
commit | c475deec6c69d509ac828cca437e2b9502f7b0c3 (patch) | |
tree | 6a15b902569999ced894daa3eea505c3dc93d58f /tests/fsm | |
parent | f40d1b78b629dfebff7598e04b8470e6942f8f58 (diff) | |
download | yosys-c475deec6c69d509ac828cca437e2b9502f7b0c3.tar.gz yosys-c475deec6c69d509ac828cca437e2b9502f7b0c3.tar.bz2 yosys-c475deec6c69d509ac828cca437e2b9502f7b0c3.zip |
Switched to Python 3
Diffstat (limited to 'tests/fsm')
-rw-r--r-- | tests/fsm/generate.py | 5 | ||||
-rwxr-xr-x | tests/fsm/run-test.sh | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/tests/fsm/generate.py b/tests/fsm/generate.py index fb5695ff6..8757d4741 100644 --- a/tests/fsm/generate.py +++ b/tests/fsm/generate.py @@ -1,7 +1,4 @@ -#!/usr/bin/python - -from __future__ import division -from __future__ import print_function +#!/usr/bin/env python3 import sys import random diff --git a/tests/fsm/run-test.sh b/tests/fsm/run-test.sh index 57c2a5b12..423892334 100755 --- a/tests/fsm/run-test.sh +++ b/tests/fsm/run-test.sh @@ -8,7 +8,7 @@ set -e rm -rf temp mkdir -p temp echo "generating tests.." -python generate.py +python3 generate.py { all_targets="all_targets:" |