aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ben Gamari <ben@smart-cactus.org>2016-12-15 14:06:36 -0500
committerGravatar Ben Gamari <ben@smart-cactus.org>2016-12-15 14:08:35 -0500
commitd0b0e8cf5a7fa5b9dc500d2f623258200818cb16 (patch)
tree354ba83b239933eaf5abff10f106088b7f4c8300
parent97ced7896688d1fc5bc72421229e3d0ff9b628dd (diff)
Fix posix005 test
Needed import of sort and updated expected output
-rw-r--r--tests/libposix/posix005.hs2
-rw-r--r--tests/libposix/posix005.stdout8
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/libposix/posix005.hs b/tests/libposix/posix005.hs
index 2988f4c..91331ff 100644
--- a/tests/libposix/posix005.hs
+++ b/tests/libposix/posix005.hs
@@ -1,4 +1,4 @@
-
+import Data.List (sort)
import System.IO
import System.Posix.Env
diff --git a/tests/libposix/posix005.stdout b/tests/libposix/posix005.stdout
index ace79ee..4f60054 100644
--- a/tests/libposix/posix005.stdout
+++ b/tests/libposix/posix005.stdout
@@ -1,7 +1,7 @@
vt100
[("one","1"),("two","2")]
-[("one","1"),("two","2"),("foo","bar")]
-[("one","1"),("two","2"),("foo","baz")]
-[("one","1"),("two","2"),("foo","baz"),("fu","bar")]
-[("one","1"),("two","2"),("fu","bar")]
+[("foo","bar"),("one","1"),("two","2")]
+[("foo","baz"),("one","1"),("two","2")]
+[("foo","baz"),("fu","bar"),("one","1"),("two","2")]
+[("fu","bar"),("one","1"),("two","2")]
[]