verilator/ci/test.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
# DESCRIPTION: Verilator: Travis CI test script
#
# Copyright 2019 by Todd Strader. This program is free software; you
# can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License
# Version 2.0.
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
set -e
export DRIVER_FLAGS='-j 0 --quiet --rerun'
case $1 in
2020-05-17 12:19:42 +00:00
all)
make -C test_regress
2020-05-16 18:59:30 +00:00
;;
dist)
make -C test_regress SCENARIOS=--dist
;;
vlt)
make -C test_regress SCENARIOS=--vlt
;;
vltmt)
make -C test_regress SCENARIOS=--vltmt
;;
vltmt0)
make -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=0/2
;;
vltmt1)
make -C test_regress SCENARIOS=--vltmt DRIVER_HASHSET=--hashset=1/2
;;
2020-05-17 12:19:42 +00:00
coverage1)
nodist/code_coverage --stages 1-2
;;
coverage2)
nodist/code_coverage
bash <(curl -s https://codecov.io/bash) -f nodist/obj_dir/coverage/app_total.info
;;
*)
echo "Usage: test.sh (dist|vlt|vltmt)"
exit -1
;;
esac