Skip to content

Commit eb7997f

Browse files
B. Wilsonxelxebar
authored andcommitted
Fix #94. Ignore expected FIFO exception in tests
1 parent 7e2ee6f commit eb7997f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fifo.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
string_concat("mkfifo ", FifoPath, MkFifoCmd), % no swipl predicate for this
1414
shell(MkFifoCmd, ExitCode),
1515
(ExitCode == 0 ->
16-
thread_create(fifo:process_fifo(FifoPath), _, [detached(true)])
16+
thread_create(fifo:process_fifo(FifoPath), _, [ignore(detached(true))])
1717
; writeln(user_error, "Could not spawn command fifo!"))
1818
)))
1919
.

0 commit comments

Comments
 (0)