Added tests/memfile to 'make test' with an extra testcase
authorRodrigo Alejandro Melo <rodrigomelo9@gmail.com>
Sun, 2 Feb 2020 01:44:06 +0000 (22:44 -0300)
committerRodrigo Alejandro Melo <rodrigomelo9@gmail.com>
Sun, 2 Feb 2020 01:44:06 +0000 (22:44 -0300)
Signed-off-by: Rodrigo Alejandro Melo <rodrigomelo9@gmail.com>
Makefile
tests/memfile/run-test.sh

index 43c4d089027b01f68adfd3386612a3b64d9c1853..e9dfd9df07be9d197725ba8126116249faaafa74 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -728,6 +728,7 @@ test: $(TARGETS) $(EXTRA_TARGETS)
        +cd tests/arch/anlogic && bash run-test.sh $(SEEDOPT)
        +cd tests/arch/gowin && bash run-test.sh $(SEEDOPT)
        +cd tests/rpc && bash run-test.sh
+       +cd tests/memfile && bash run-test.sh
        @echo ""
        @echo "  Passed \"make test\"."
        @echo ""
index 3a88b81dea46da317bf0dc912165adb09e3e8f53..2bbc162e715e8db7c4b9bfad9198e9bc693bc004 100755 (executable)
@@ -1,9 +1,6 @@
 #!/bin/bash
 
-echo "* Creating Memory Content Files"
-
-for i in {1..64}
-do
+for i in {1..64}; do
        echo "00001111000000001111111100000000" >> tempfile1.dat
 done
 
@@ -12,28 +9,25 @@ cp tempfile1.dat temp/tempfile2.dat
 
 cd ..
 
-echo "* Running from the parent directory"
-echo "  * Memory Content File: tempfile1.dat"
+echo "Running from the parent directory with tempfile1.dat"
 ../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"tempfile1.dat\" memory; synth -top memory"
-echo "  * Memory Content File: temp/tempfile2.dat"
+echo "Running from the parent directory with temp/tempfile2.dat"
 ../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"temp/tempfile2.dat\" memory; synth -top memory"
+echo "Running from the parent directory with memfile/temp/tempfile2.dat"
+../yosys -qp "read_verilog -defer memfile/memory.v; chparam -set MEMFILE \"memfile/temp/tempfile2.dat\" memory; synth -top memory"
 
 cd memfile
 
-echo "* Running from the same directory"
-echo "  * Memory Content File: tempfile1.dat"
+echo "Running from the same directory with tempfile1.dat"
 ../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"tempfile1.dat\" memory; synth -top memory"
-echo "  * Memory Content File: temp/tempfile2.dat"
+echo "Running from the same directory with temp/tempfile2.dat"
 ../../yosys -qp "read_verilog -defer memory.v; chparam -set MEMFILE \"temp/tempfile2.dat\" memory; synth -top memory"
 
 cd temp
 
-echo "* Running from a child directory"
-echo "  * Memory Content File: tempfile1.dat"
+echo "Running from a child directory with tempfile1.dat"
 ../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"tempfile1.dat\" memory; synth -top memory"
-echo "  * Memory Content File: temp/tempfile2.dat"
+echo "Running from a child directory with temp/tempfile2.dat"
 ../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/tempfile2.dat\" memory; synth -top memory"
-echo "  * Memory Content File: tempfile2.dat"
+echo "Running from a child directory with tempfile2.dat"
 ../../../yosys -qp "read_verilog -defer ../memory.v; chparam -set MEMFILE \"temp/tempfile2.dat\" memory; synth -top memory"
-
-echo "* Done"