#!/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 all) make -C test_regress ;; 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 ;; 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