From 24cdea7da377a418cf7bcd4492837d9ad3c34049 Mon Sep 17 00:00:00 2001 From: Humza Shahid Date: Tue, 17 Dec 2024 09:49:07 +0000 Subject: [PATCH] pull in new version of railroad library, and make a one-line change to print exclusively tests that have failed (because terminal output is noisy otherwise) --- test/Railroad | 2 +- test/test.sml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Railroad b/test/Railroad index 3154a78..b5aa94a 160000 --- a/test/Railroad +++ b/test/Railroad @@ -1 +1 @@ -Subproject commit 3154a783c0f5e01e17578ffb1d2209bf68496596 +Subproject commit b5aa94a8801f4f64afc3eb63f6a4a8ce57bef609 diff --git a/test/test.sml b/test/test.sml index b2ac3fa..702eccb 100644 --- a/test/test.sml +++ b/test/test.sml @@ -528,7 +528,6 @@ val kMove = describe "move motion 'k'" val ({cursorIdx, ...}, _) = AppUpdate.update (app, CHAR_EVENT #"k") (* assert *) - val _ = print ("cursorIdx: " ^ Int.toString cursorIdx ^ "\n") val isSkipped = cursorIdx = 0 in Expect.isTrue isSkipped @@ -1809,4 +1808,4 @@ val tests = concat , percentMove ] -val _ = run tests +val _ = runWithConfig [Configuration.PrintPassed false] tests