From 0be6fe4b71297b33273e4e570bbe4f9f482ea3e8 Mon Sep 17 00:00:00 2001 From: joshua Date: Tue, 6 Feb 2024 00:10:49 -0800 Subject: [PATCH] add custom bmark / custom test scripts --- build-custom-bmark.sh | 10 ++++++++++ build-custom-test.sh | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100755 build-custom-bmark.sh create mode 100755 build-custom-test.sh diff --git a/build-custom-bmark.sh b/build-custom-bmark.sh new file mode 100755 index 00000000..bc55880c --- /dev/null +++ b/build-custom-bmark.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +bash << "EOF" +source ./env.sh +export PATH="/home/ff/cs152/sp22/lab1-install/bin:$PATH" +cd /scratch/${USER}/chipyard/generators/riscv-sodor/test/custom-bmarks +make +make run +make dump +EOF diff --git a/build-custom-test.sh b/build-custom-test.sh new file mode 100755 index 00000000..4373768e --- /dev/null +++ b/build-custom-test.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +bash << "EOF" +source ./env.sh +export PATH="/home/ff/cs152/sp22/lab1-install/bin:$PATH" +cd /scratch/${USER}/chipyard/generators/riscv-sodor/test/custom-tests +make +EOF