diff options
author | clairexen <claire@symbioticeda.com> | 2020-10-01 18:12:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 18:12:31 +0200 |
commit | 2412e754953595627e8c87ff0aa773929c71a852 (patch) | |
tree | bc02013f6312a0c1cb8351e213bd7e08255d79f9 /tests/sat | |
parent | c4bfbecca60eaf8c02a792627c1e49b5dde3cdeb (diff) | |
parent | bed14241efbf9949d0ed9d84836d7a019895dfde (diff) | |
download | yosys-2412e754953595627e8c87ff0aa773929c71a852.tar.gz yosys-2412e754953595627e8c87ff0aa773929c71a852.tar.bz2 yosys-2412e754953595627e8c87ff0aa773929c71a852.zip |
Merge pull request #2380 from Xiretza/parallel-tests
Clean up and parallelize testsuite
Diffstat (limited to 'tests/sat')
-rw-r--r-- | tests/sat/.gitignore | 1 | ||||
-rwxr-xr-x | tests/sat/run-test.sh | 10 |
2 files changed, 5 insertions, 6 deletions
diff --git a/tests/sat/.gitignore b/tests/sat/.gitignore index 397b4a762..8355de9dc 100644 --- a/tests/sat/.gitignore +++ b/tests/sat/.gitignore @@ -1 +1,2 @@ *.log +run-test.mk diff --git a/tests/sat/run-test.sh b/tests/sat/run-test.sh index 67e1beb23..74589dfeb 100755 --- a/tests/sat/run-test.sh +++ b/tests/sat/run-test.sh @@ -1,6 +1,4 @@ -#!/bin/bash -set -e -for x in *.ys; do - echo "Running $x.." - ../../yosys -ql ${x%.ys}.log $x -done +#!/usr/bin/env bash +set -eu +source ../gen-tests-makefile.sh +run_tests --yosys-scripts |