about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-04-12 23:30:50 -0700
committerKartik Agaram <vc@akkartik.com>2019-04-12 23:31:56 -0700
commitebb4f558699a325afc234b5125bce0d02aee370a (patch)
tree81bc2e0631d514ca9e8730e0ad406e3264e164c4 /subx
parent32693922472397beb0f835935e197ab59362d954 (diff)
downloadmu-ebb4f558699a325afc234b5125bce0d02aee370a.tar.gz
5087
Fix CI.

For some reason allocating 4KB natively on Linux triggers a segfault. Temporarily
reducing segment size to 256 bytes; that's large enough for the test. But
it's not a long-term solution. Maybe I need to grow the heap with sbrk()?
Diffstat (limited to 'subx')
-rwxr-xr-xsubx/apps/assortbin21190 -> 21190 bytes
-rw-r--r--subx/apps/assort.subx3
2 files changed, 2 insertions, 1 deletions
diff --git a/subx/apps/assort b/subx/apps/assort
index d7fbd379..2927a258 100755
--- a/subx/apps/assort
+++ b/subx/apps/assort
Binary files differdiff --git a/subx/apps/assort.subx b/subx/apps/assort.subx
index 74712632..b1ba63d3 100644
--- a/subx/apps/assort.subx
+++ b/subx/apps/assort.subx
@@ -1398,6 +1398,7 @@ _test-data-segment:
 _test-data-segment-end:
 
 Segment-size:
-  0x1000/imm32/4KB
+  0x100/imm32/4KB
+#?   0x1000/imm32/4KB
 
 # . . vim:nowrap:textwidth=0