OSDN Git Service

Single builds skip commands with 0 in the install location so
authorRob Landley <rob@landley.net>
Sat, 30 Jul 2016 16:39:17 +0000 (11:39 -0500)
committerRob Landley <rob@landley.net>
Sat, 30 Jul 2016 16:39:17 +0000 (11:39 -0500)
"make test_scankey" didn't work.

toys/example/test_human_readable.c
toys/example/test_many_options.c
toys/example/test_scankey.c

index ae8e788..9fff262 100644 (file)
@@ -2,7 +2,7 @@
  *
  * Copyright 2015 Rob Landley <rob@landley.net>
 
-USE_TEST_HUMAN_READABLE(NEWTOY(test_human_readable, "<1>1ibs", 0))
+USE_TEST_HUMAN_READABLE(NEWTOY(test_human_readable, "<1>1ibs", TOYFLAG_BIN))
 
 config TEST_HUMAN_READABLE
   bool "test_human_readable"
index d2f5c84..e071d26 100644 (file)
@@ -2,7 +2,7 @@
  *
  * Copyright 2015 Rob Landley <rob@landley.net>
 
-USE_TEST_MANY_OPTIONS(NEWTOY(test_many_options, "ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba", TOYFLAG_USR|TOYFLAG_BIN))
+USE_TEST_MANY_OPTIONS(NEWTOY(test_many_options, "ZYXWVUTSRQPONMLKJIHGFEDCBAzyxwvutsrqponmlkjihgfedcba", TOYFLAG_BIN))
 
 config TEST_MANY_OPTIONS
   bool "test_many_options"
index 17eb0cf..db90027 100644 (file)
@@ -4,7 +4,7 @@
  *
  * TODO sigwinch
 
-USE_TEST_SCANKEY(NEWTOY(test_scankey, 0, 0))
+USE_TEST_SCANKEY(NEWTOY(test_scankey, 0, TOYFLAG_BIN))
 
 config TEST_SCANKEY
   bool "test_scankey"