aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-07-19 16:33:39 +1000
committerOliver O'Halloran <oohall@gmail.com>2019-07-19 17:45:50 +1000
commit0ee242b947da149c9c319ff466bd0f4996feca8b (patch)
treef1157f45169fe1430f7df8fd7de4300a749e1a0d /test
parent62ceded30471a8490ec9fe6db153a61c43f64bd3 (diff)
downloadskiboot-0ee242b947da149c9c319ff466bd0f4996feca8b.zip
skiboot-0ee242b947da149c9c319ff466bd0f4996feca8b.tar.gz
skiboot-0ee242b947da149c9c319ff466bd0f4996feca8b.tar.bz2
gcov: Fix skiboot size to dump out from simulators
We can be up to 5MB now, and have been for a while. Fixes: 7c9b3eb3c149843a27b9674e66b0227cf289a29a Signed-off-by: Stewart Smith <stewart@linux.ibm.com> Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/hello_world/run_hello_world.tcl2
-rw-r--r--test/run_boot_test.tcl2
-rw-r--r--test/sreset_world/run_sreset_world.tcl2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/hello_world/run_hello_world.tcl b/test/hello_world/run_hello_world.tcl
index 0e2922d..bbd916c 100644
--- a/test/hello_world/run_hello_world.tcl
+++ b/test/hello_world/run_hello_world.tcl
@@ -1,5 +1,5 @@
source ../../external/mambo/skiboot.tcl
mysim go
-mysim memory fwrite 0x30000000 0x300000 skiboot-hello_world.dump
+mysim memory fwrite 0x30000000 0x500000 skiboot-hello_world.dump
exit
diff --git a/test/run_boot_test.tcl b/test/run_boot_test.tcl
index f8072cc..9aa708d 100644
--- a/test/run_boot_test.tcl
+++ b/test/run_boot_test.tcl
@@ -12,5 +12,5 @@ proc console_trigger {response args} {
mysim trigger set console "Welcome to Petitboot" { console_trigger "x" }
mysim trigger set console "# " { console_trigger "halt\n" }
mysim go
-mysim memory fwrite 0x30000000 0x300000 $env(SKIBOOT_MEM_DUMP)
+mysim memory fwrite 0x30000000 0x500000 $env(SKIBOOT_MEM_DUMP)
exit
diff --git a/test/sreset_world/run_sreset_world.tcl b/test/sreset_world/run_sreset_world.tcl
index d399a0d..38da0d2 100644
--- a/test/sreset_world/run_sreset_world.tcl
+++ b/test/sreset_world/run_sreset_world.tcl
@@ -2,5 +2,5 @@ source ../../external/mambo/skiboot.tcl
source ../../external/mambo/mambo_utils.tcl
mysim go
-mysim memory fwrite 0x30000000 0x300000 skiboot-sreset_world.dump
+mysim memory fwrite 0x30000000 0x500000 skiboot-sreset_world.dump
exit