OpenCores
URL https://opencores.org/ocsvn/w11/w11/trunk

Subversion Repositories w11

[/] [w11/] [tags/] [w11a_V0.6/] [doc/] [w11a_tb_guide.txt] - Diff between revs 22 and 24

Only display areas with differences | Details | Blame | View Log

Rev 22 Rev 24
# $Id: w11a_tb_guide.txt 547 2013-12-29 13:10:07Z mueller $
# $Id: w11a_tb_guide.txt 547 2013-12-29 13:10:07Z mueller $
Guide to running w11a test benches
Guide to running w11a test benches
  Table of content:
  Table of content:
  1. Unit tests benches
  1. Unit tests benches
  2. Available unit tests benches
  2. Available unit tests benches
  3. System tests benches
  3. System tests benches
  4. Available system tests benches
  4. Available system tests benches
1. Unit tests benches -----------------------------------------------------
1. Unit tests benches -----------------------------------------------------
   All unit test benches have the same simple structure:
   All unit test benches have the same simple structure:
   - a stimulus process reads test patterns as well as the expected
   - a stimulus process reads test patterns as well as the expected
     responses from a stimulus file
     responses from a stimulus file
   - the responses are checked in very simple cases by the stimulus process,
   - the responses are checked in very simple cases by the stimulus process,
     in general by a monitoring process
     in general by a monitoring process
   - the test bench produces a comprehensive log file. For each checked
   - the test bench produces a comprehensive log file. For each checked
     response the line contains the word "CHECK" and either an "OK" or a
     response the line contains the word "CHECK" and either an "OK" or a
     "FAIL", in the later case in general with an indication of whats wrong.
     "FAIL", in the later case in general with an indication of whats wrong.
     Other unexpected behaviour, like timeouts, will also result in a line
     Other unexpected behaviour, like timeouts, will also result in a line
     containing the word "FAIL".
     containing the word "FAIL".
   - at the end a line with the word "DONE" is printed.
   - at the end a line with the word "DONE" is printed.
   - the test bench is run like
   - the test bench is run like
       tbw  [stimfile] | tee  | egrep "(FAIL|DONE)"
       tbw  [stimfile] | tee  | egrep "(FAIL|DONE)"
     where
     where
       - 'tbw' is a small perl script setting up a symbolic link to the
       - 'tbw' is a small perl script setting up a symbolic link to the
         stimulus file, the default extracted from the file tbw.dat, if
         stimulus file, the default extracted from the file tbw.dat, if
         an optional file name is give this one will be used instead.
         an optional file name is give this one will be used instead.
       - 'tee' ensures that the full log is saved
       - 'tee' ensures that the full log is saved
       - 'egrep' filters FAIL and DONE lines, a successful run will
       - 'egrep' filters FAIL and DONE lines, a successful run will
         produce a single DONE line
         produce a single DONE line
   - Most tests can be run against
   - Most tests can be run against
       - the functional model
       - the functional model
       - gate level models at three stages
       - gate level models at three stages
         - the post-xst model   (produced by netgen from ngc xst output)
         - the post-xst model   (produced by netgen from ngc xst output)
         - the post-map model   (produced by netgen from ncd ngdbuild output)
         - the post-map model   (produced by netgen from ncd ngdbuild output)
         - the post-par model   (produced by netgen from ncd par output)
         - the post-par model   (produced by netgen from ncd par output)
     This is simply done using
     This is simply done using
        make _ssim       for post-xst
        make _ssim       for post-xst
        make _fsim       for post-map
        make _fsim       for post-map
        make _tsim       for post-par
        make _tsim       for post-par
     all the rest is handled by the build environment.
     all the rest is handled by the build environment.
     An example of a post-synthesis model is given for the w11a core test.
     An example of a post-synthesis model is given for the w11a core test.
2. Available unit tests benches -------------------------------------------
2. Available unit tests benches -------------------------------------------
   In the following the available tests are listed with
   In the following the available tests are listed with
     - the 'make' command to build them
     - the 'make' command to build them
     - the pipe setup to run them
     - the pipe setup to run them
     - the expected output (the run time measured on a 3 GHz system)
     - the expected output (the run time measured on a 3 GHz system)
   - serport receiver test
   - serport receiver test
     cd $RETROBASE/rtl/vlib/serport/tb
     cd $RETROBASE/rtl/vlib/serport/tb
     make tb_serport_uart_rx
     make tb_serport_uart_rx
     time tbw tb_serport_uart_rx |\
     time tbw tb_serport_uart_rx |\
       tee tb_serport_uart_rx_dsim.log | egrep "(FAIL|DONE)"
       tee tb_serport_uart_rx_dsim.log | egrep "(FAIL|DONE)"
     -> 1269955.0 ns  63488: DONE
     -> 1269955.0 ns  63488: DONE
     -> real 0m01.178s   user 0m01.172s   sys 0m00.020s
     -> real 0m01.178s   user 0m01.172s   sys 0m00.020s
   - serport receiver/transmitter test
   - serport receiver/transmitter test
     make tb_serport_uart_rxtx
     make tb_serport_uart_rxtx
     time tbw tb_serport_uart_rxtx |\
     time tbw tb_serport_uart_rxtx |\
       tee tb_serport_uart_rxtx_dsim.log | egrep "(FAIL|DONE)"
       tee tb_serport_uart_rxtx_dsim.log | egrep "(FAIL|DONE)"
     ->  52335.0 ns   2607: DONE
     ->  52335.0 ns   2607: DONE
     -> real 0m00.094s   user 0m00.092s   sys 0m00.008s
     -> real 0m00.094s   user 0m00.092s   sys 0m00.008s
   - serport autobauder test
   - serport autobauder test
     make tb_serport_autobaud
     make tb_serport_autobaud
     time tbw tb_serport_autobaud |\
     time tbw tb_serport_autobaud |\
       tee tb_serport_autobaud_dsim.log | egrep "(FAIL|DONE)"
       tee tb_serport_autobaud_dsim.log | egrep "(FAIL|DONE)"
     -> 367475.0 ns  18364: DONE
     -> 367475.0 ns  18364: DONE
     -> real 0m00.610s   user 0m00.612s   sys 0m00.004s
     -> real 0m00.610s   user 0m00.612s   sys 0m00.004s
   - rlink core test
   - rlink core test
     cd $RETROBASE/rtl/vlib/rlink/tb
     cd $RETROBASE/rtl/vlib/rlink/tb
     make tb_rlink_direct
     make tb_rlink_direct
     time tbw tb_rlink_direct |\
     time tbw tb_rlink_direct |\
       tee tb_rlink_direct_dsim.log | egrep "(FAIL|DONE)"
       tee tb_rlink_direct_dsim.log | egrep "(FAIL|DONE)"
     ->  147755.0 ns   7378: DONE
     ->  147755.0 ns   7378: DONE
     -> real 0m00.317s   user 0m00.324s   sys 0m00.028s
     -> real 0m00.317s   user 0m00.324s   sys 0m00.028s
   - rlink core test via serial port interface
   - rlink core test via serial port interface
     cd $RETROBASE/rtl/vlib/rlink/tb
     cd $RETROBASE/rtl/vlib/rlink/tb
     make tb_rlink_sp1c
     make tb_rlink_sp1c
     time tbw tb_rlink_sp1c tb_rlink_sp1c_stim.dat |\
     time tbw tb_rlink_sp1c tb_rlink_sp1c_stim.dat |\
       tee tb_rlink_sp1c_stim2_dsim.log | egrep "(FAIL|DONE)"
       tee tb_rlink_sp1c_stim2_dsim.log | egrep "(FAIL|DONE)"
     ->   24695.0 ns   1225: DONE
     ->   24695.0 ns   1225: DONE
     -> real 0m0.133s   user 0m0.104s   sys 0m0.008s
     -> real 0m0.133s   user 0m0.104s   sys 0m0.008s
     time tbw tb_rlink_sp1c tb_rlink_stim.dat |\
     time tbw tb_rlink_sp1c tb_rlink_stim.dat |\
       tee tb_rlink_sp1c_dsim.log | egrep "(FAIL|DONE)"
       tee tb_rlink_sp1c_dsim.log | egrep "(FAIL|DONE)"
     -> 551935.0 ns  27587: DONE
     -> 551935.0 ns  27587: DONE
     -> real  0m01.714s   user  0m01.704s   sys  0m00.044s
     -> real  0m01.714s   user  0m01.704s   sys  0m00.044s
   - w11a core test (using behavioural model)
   - w11a core test (using behavioural model)
     cd $RETROBASE/rtl/w11a/tb
     cd $RETROBASE/rtl/w11a/tb
     make tb_pdp11core
     make tb_pdp11core
     time tbw tb_pdp11core |\
     time tbw tb_pdp11core |\
       tee tb_pdp11core_dsim.log | egrep "(FAIL|DONE)"
       tee tb_pdp11core_dsim.log | egrep "(FAIL|DONE)"
     -> 1220255.0 ns  61003: DONE
     -> 1220255.0 ns  61003: DONE
     -> real 0m10.736s   user 0m10.713s   sys 0m00.060s
     -> real 0m10.736s   user 0m10.713s   sys 0m00.060s
   - w11a core test (using post-synthesis model)
   - w11a core test (using post-synthesis model)
     make ghdl_tmp_clean tb_pdp11core_ssim
     make ghdl_tmp_clean tb_pdp11core_ssim
     time tbw tb_pdp11core_ssim |\
     time tbw tb_pdp11core_ssim |\
       tee tb_pdp11core_ssim.log | egrep "(FAIL|DONE)"
       tee tb_pdp11core_ssim.log | egrep "(FAIL|DONE)"
     ->  1220255.0 ns  61003: DONE
     ->  1220255.0 ns  61003: DONE
     -> real 1m09.738s   user 1m09.588s   sys 0m00.096s
     -> real 1m09.738s   user 1m09.588s   sys 0m00.096s
   - s3board sram controller test
   - s3board sram controller test
     cd $RETROBASE/rtl/bplib/s3board/tb
     cd $RETROBASE/rtl/bplib/s3board/tb
     make tb_s3_sram_memctl
     make tb_s3_sram_memctl
     time tbw tb_s3_sram_memctl |\
     time tbw tb_s3_sram_memctl |\
       tee tb_s3_sram_memctl_dsim.log | egrep "(FAIL|DONE)"
       tee tb_s3_sram_memctl_dsim.log | egrep "(FAIL|DONE)"
     -> 5015.0 ns    241: DONE
     -> 5015.0 ns    241: DONE
     -> real 0m00.113s   user 0m00.068s   sys 0m00.016s
     -> real 0m00.113s   user 0m00.068s   sys 0m00.016s
   - nexys2/nexys3 cram controller test
   - nexys2/nexys3 cram controller test
     cd $RETROBASE/rtl/bplib/nxcramlib/tb
     cd $RETROBASE/rtl/bplib/nxcramlib/tb
     make tb_nx_cram_memctl_as
     make tb_nx_cram_memctl_as
     time tbw tb_nx_cram_memctl_as |\
     time tbw tb_nx_cram_memctl_as |\
       tee tb_nx_cram_memctl_as_dsim.log | egrep "(FAIL|DONE)"
       tee tb_nx_cram_memctl_as_dsim.log | egrep "(FAIL|DONE)"
     -> 24272.5 ns   1204: DONE
     -> 24272.5 ns   1204: DONE
     -> real 0m00.343s   user 0m00.248s   sys 0m00.100s
     -> real 0m00.343s   user 0m00.248s   sys 0m00.100s
3. System tests benches ---------------------------------------------------
3. System tests benches ---------------------------------------------------
   The system tests allow to verify to verify a full system design.
   The system tests allow to verify to verify a full system design.
   In this case vhdl test bench code contains
   In this case vhdl test bench code contains
     - (simple) models of the memories used on the FPGA boards
     - (simple) models of the memories used on the FPGA boards
     - drivers for the rlink connection (currently just serialport)
     - drivers for the rlink connection (currently just serialport)
     - code to interface the rlink data stream to a UNIX 'named pipe',
     - code to interface the rlink data stream to a UNIX 'named pipe',
       implemented with a C routine which is called via VHPI from VHDL.
       implemented with a C routine which is called via VHPI from VHDL.
   This way the whole ghdl simulation can be controlled via a di-directional
   This way the whole ghdl simulation can be controlled via a di-directional
   byte stream.
   byte stream.
   The rlink backend process can connect either via a named pipe to a ghdl
   The rlink backend process can connect either via a named pipe to a ghdl
   simulation, or via a serial port to a FPGA board. This way the same tests
   simulation, or via a serial port to a FPGA board. This way the same tests
   can be executed in simulation and on real hardware.
   can be executed in simulation and on real hardware.
4. Available system tests benches -----------------------------------------
4. Available system tests benches -----------------------------------------
4a. serport tester ---------------------------------------------------
4a. serport tester ---------------------------------------------------
   The sys_tst_serloop design is a test target for validating the serial
   The sys_tst_serloop design is a test target for validating the serial
   link UART stack. Send and receive throughput as well as loop-back tests
   link UART stack. Send and receive throughput as well as loop-back tests
   are supported
   are supported
   - sys_tst_serloop_s3 test bench
   - sys_tst_serloop_s3 test bench
     cd $RETROBASE/rtl/sys_gen/tst_serloop/s3board/tb
     cd $RETROBASE/rtl/sys_gen/tst_serloop/s3board/tb
     make tb_tst_serloop_s3
     make tb_tst_serloop_s3
     time tbw tb_tst_serloop_s3 |\
     time tbw tb_tst_serloop_s3 |\
       tee tb_tst_serloop_s3_dsim.log | egrep "(FAIL|DONE)"
       tee tb_tst_serloop_s3_dsim.log | egrep "(FAIL|DONE)"
     -> 301353.3 ns  18068: DONE
     -> 301353.3 ns  18068: DONE
     -> real 0m1.422s   user 0m1.372s   sys 0m0.024s
     -> real 0m1.422s   user 0m1.372s   sys 0m0.024s
   - sys_tst_serloop_n2 test bench
   - sys_tst_serloop_n2 test bench
     cd $RETROBASE/rtl/sys_gen/tst_serloop/nexys2/tb
     cd $RETROBASE/rtl/sys_gen/tst_serloop/nexys2/tb
     make tb_tst_serloop1_n2
     make tb_tst_serloop1_n2
     time tbw tb_tst_serloop1_n2 |\
     time tbw tb_tst_serloop1_n2 |\
       tee tb_tst_serloop1_n2_dsim.log | egrep "(FAIL|DONE)"
       tee tb_tst_serloop1_n2_dsim.log | egrep "(FAIL|DONE)"
     -> 361560.0 ns  18068: DONE
     -> 361560.0 ns  18068: DONE
     -> real 0m1.341s   user 0m1.340s   sys 0m0.016s
     -> real 0m1.341s   user 0m1.340s   sys 0m0.016s
     make tb_tst_serloop2_n2
     make tb_tst_serloop2_n2
     time tbw tb_tst_serloop2_n2 |\
     time tbw tb_tst_serloop2_n2 |\
       tee tb_tst_serloop2_n2_dsim.log | egrep "(FAIL|DONE)"
       tee tb_tst_serloop2_n2_dsim.log | egrep "(FAIL|DONE)"
     -> 304353.3 ns  18248: DONE
     -> 304353.3 ns  18248: DONE
     -> real 0m1.933s   user 0m1.924s   sys 0m0.024s
     -> real 0m1.933s   user 0m1.924s   sys 0m0.024s
   - sys_tst_serloop_n3 test bench
   - sys_tst_serloop_n3 test bench
     cd $RETROBASE/rtl/sys_gen/tst_serloop/nexys3/tb
     cd $RETROBASE/rtl/sys_gen/tst_serloop/nexys3/tb
     make tb_tst_serloop1_n3
     make tb_tst_serloop1_n3
     time tbw tb_tst_serloop1_n3 |\
     time tbw tb_tst_serloop1_n3 |\
       tee tb_tst_serloop1_n3_dsim.log | egrep "(FAIL|DONE)"
       tee tb_tst_serloop1_n3_dsim.log | egrep "(FAIL|DONE)"
     -> 361560.0 ns  18068: DONE
     -> 361560.0 ns  18068: DONE
     -> real 0m1.371s   user 0m1.372s   sys 0m0.016s
     -> real 0m1.371s   user 0m1.372s   sys 0m0.016s
4b. rlink tester -----------------------------------------------------
4b. rlink tester -----------------------------------------------------
   The sys_tst_rlink design is a test target for validating the rlink
   The sys_tst_rlink design is a test target for validating the rlink
   and rbus functionality at all levels.
   and rbus functionality at all levels.
   - sys_tst_rlink_s3 test bench
   - sys_tst_rlink_s3 test bench
     cd $RETROBASE/rtl/sys_gen/tst_rlink/s3board/tb
     cd $RETROBASE/rtl/sys_gen/tst_rlink/s3board/tb
     make tb_tst_rlink_s3
     make tb_tst_rlink_s3
     time ti_rri --run="tbw tb_tst_rlink_s3" --fifo --logl=3 -- \
     time ti_rri --run="tbw tb_tst_rlink_s3" --fifo --logl=3 -- \
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       tee tb_tst_rlink_s3_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_tst_rlink_s3_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 960540.0 ns  48017: DONE
     -> 960540.0 ns  48017: DONE
     -> real 0m4.470s
     -> real 0m4.470s
   - sys_tst_rlink_n2 test bench
   - sys_tst_rlink_n2 test bench
     cd $RETROBASE/rtl/sys_gen/tst_rlink/nexys2/tb
     cd $RETROBASE/rtl/sys_gen/tst_rlink/nexys2/tb
     make tb_tst_rlink_n2
     make tb_tst_rlink_n2
     time ti_rri --run="tbw tb_tst_rlink_n2" --fifo --logl=3 -- \
     time ti_rri --run="tbw tb_tst_rlink_n2" --fifo --logl=3 -- \
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       tee tb_tst_rlink_n2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_tst_rlink_n2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 960560.0 ns  48017: DONE
     -> 960560.0 ns  48017: DONE
     -> real 0m4.717s
     -> real 0m4.717s
   - sys_tst_rlink_n3 test bench
   - sys_tst_rlink_n3 test bench
     cd $RETROBASE/rtl/sys_gen/tst_rlink/nexys3/tb
     cd $RETROBASE/rtl/sys_gen/tst_rlink/nexys3/tb
     make tb_tst_rlink_n3
     make tb_tst_rlink_n3
     time ti_rri --run="tbw tb_tst_rlink_n3" --fifo --logl=3 -- \
     time ti_rri --run="tbw tb_tst_rlink_n3" --fifo --logl=3 -- \
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       "package require tst_rlink" "tst_rlink::setup" "tst_rlink::test_all" |\
       tee tb_tst_rlink_n3_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_tst_rlink_n3_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 480380.0 ns  48017: DONE
     -> 480380.0 ns  48017: DONE
     -> real 0m4.860s
     -> real 0m4.860s
4c. w11a systems -----------------------------------------------------
4c. w11a systems -----------------------------------------------------
   The stimulus file used in the w11a core test can be executed in the
   The stimulus file used in the w11a core test can be executed in the
   full system context (both s3board and nexys2 versions) with the
   full system context (both s3board and nexys2 versions) with the
   following commands. Note that the cycle number printed in the DONE
   following commands. Note that the cycle number printed in the DONE
   line can now vary slightly because the response time of the rlink
   line can now vary slightly because the response time of the rlink
   backend process and thus scheduling of backend vs. ghdl process
   backend process and thus scheduling of backend vs. ghdl process
   can affect the result.
   can affect the result.
   - sys_w11a_s3 test bench
   - sys_w11a_s3 test bench
     cd $RETROBASE/rtl/sys_gen/w11a/s3board/tb
     cd $RETROBASE/rtl/sys_gen/w11a/s3board/tb
     make tb_w11a_s3
     make tb_w11a_s3
     time ti_rri --pack=rw11 --run="tbw tb_w11a_s3" --fifo --logl=3 -- \
     time ti_rri --pack=rw11 --run="tbw tb_w11a_s3" --fifo --logl=3 -- \
         "rw11::setup_cpu" \
         "rw11::setup_cpu" \
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
       tee tb_w11a_s3_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_w11a_s3_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 10225140.0 ns 511247: DONE
     -> 10225140.0 ns 511247: DONE
     -> real 0m52.105s   user 0m51.871s   sys 0m0.376s
     -> real 0m52.105s   user 0m51.871s   sys 0m0.376s
   - sys_w11a_n2 test bench
   - sys_w11a_n2 test bench
     cd $RETROBASE/rtl/sys_gen/w11a/nexys2/tb
     cd $RETROBASE/rtl/sys_gen/w11a/nexys2/tb
     make tb_w11a_n2
     make tb_w11a_n2
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n2" --fifo --logl=3 -- \
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n2" --fifo --logl=3 -- \
         "rw11::setup_cpu" \
         "rw11::setup_cpu" \
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
       tee tb_w11a_n2_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_w11a_n2_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 10278380.0 ns 513908: DONE
     -> 10278380.0 ns 513908: DONE
     -> real 1m2.951s   user 1m2.628s   sys 0m0.532s
     -> real 1m2.951s   user 1m2.628s   sys 0m0.532s
   - sys_w11a_n3 test bench
   - sys_w11a_n3 test bench
     cd $RETROBASE/rtl/sys_gen/w11a/nexys3/tb
     cd $RETROBASE/rtl/sys_gen/w11a/nexys3/tb
     make tb_w11a_n3
     make tb_w11a_n3
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n3" --fifo --logl=3 -- \
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n3" --fifo --logl=3 -- \
         "rw11::setup_cpu" \
         "rw11::setup_cpu" \
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
         "rw11::run_pdpcp ../../../../w11a/tb/tb_pdp11core_stim.dat" |\
       tee tb_w11a_n3_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
       tee tb_w11a_n3_stim2_dsim.log | egrep "(-[EFW]:|FAIL|PEND|DONE)"
     -> 5167410.0 ns 516720: DONE
     -> 5167410.0 ns 516720: DONE
     -> real 1m5.322s   user 1m5.072s   sys 0m0.500s
     -> real 1m5.322s   user 1m5.072s   sys 0m0.500s
   A new, modular w11a test bench is under construction. So far it is very
   A new, modular w11a test bench is under construction. So far it is very
   incomplete. This very preliminary version can be executed with
   incomplete. This very preliminary version can be executed with
   - sys_w11a_n2 test bench
   - sys_w11a_n2 test bench
     cd $RETROBASE/rtl/sys_gen/w11a/nexys2/tb
     cd $RETROBASE/rtl/sys_gen/w11a/nexys2/tb
     make tb_w11a_n2
     make tb_w11a_n2
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n2" --fifo --logl=3 -- \
     time ti_rri --pack=rw11 --run="tbw tb_w11a_n2" --fifo --logl=3 -- \
         "rw11::setup_cpu" "rw11::tbench @w11a_all.dat" | \
         "rw11::setup_cpu" "rw11::tbench @w11a_all.dat" | \
       tee w11a_tbench_dsim.log | egrep "(-[EFW]:|FAIL|PASS|DONE)"
       tee w11a_tbench_dsim.log | egrep "(-[EFW]:|FAIL|PASS|DONE)"
     -> 904180.0 ns  45198: DONE
     -> 904180.0 ns  45198: DONE
     -> real 0m5.539s   user 0m5.748s   sys 0m0.204s
     -> real 0m5.539s   user 0m5.748s   sys 0m0.204s
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.