Index: docs/megatest.html
==================================================================
--- docs/megatest.html
+++ docs/megatest.html
@@ -402,12 +402,12 @@
3.3.1 The Makefile
A good way to run steps in parallel within a single test, especially when there are following steps, is to use the Unix Make utility. Writing Makefiles is beyond the scope of this document but here is a minimal example that will run “runsim cpu1” and “runsim cpu2” in parallel. For more information on make try “info make” at the Linux command prompt.
-
-
+
+
# Example Makefile to run two steps in parallel
RTLDIR=/path/to/rtl
CPUS = cpu1 cpu2
@@ -440,11 +440,11 @@
3.4.1 Update you testconfig file for iteration
-
+
[setup]
runscript main.csh
[items]
CPU cpu1 cpu2
@@ -454,11 +454,11 @@
3.4.2 Rewrite your main.csh for iteration
-
+
#!/bin/tcsh -x
# run the cpu simulation but now use the environment variable $CPU
# to select what cpu to run the simulation against
@@ -1381,10 +1381,10 @@