shithub: ridefs

Download patch

ref: a8d8e4bf8d810ae86a0c914a84f4cf2fa0db9e2c
parent: dc21d6cf740840ef15946a7da129900ca219f675
author: x <x@hilbert>
date: Sat Dec 27 02:15:57 EST 2025

Make tests ⎕IO-independent

--- a/test
+++ b/test
@@ -66,7 +66,7 @@
 		~ `{wc -c info} 0 &&
 			fail 'Did not receive RIDE info'
 
-		echo '⍳5'  ||
+		echo '⎕IO←0 ⋄ ⍳5'  ||
 			fail 'Could not send message'
 
 		cont=1
@@ -77,7 +77,7 @@
 				cont=0
 			}
 		}
-		~ $rx '1 2 3 4 5' ||
+		~ $rx '0 1 2 3 4' ||
 			fail 'Did not receive expected response'
 	}
 	cd ..
--