summaryrefslogtreecommitdiffstats
path: root/src/commandline/commands/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandline/commands/test.c')
-rw-r--r--src/commandline/commands/test.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/commandline/commands/test.c b/src/commandline/commands/test.c
deleted file mode 100644
index 59b0b72b7..000000000
--- a/src/commandline/commands/test.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <vsprintf.h>
-#include <gpxe/command.h>
-
-void test_req(){}
-
-static int cmd_test_exec ( int argc, char **argv ) {
- int i;
-
- printf("Hello, world!\nI got the following arguments passed to me: \n");
- for(i = 0; i < argc; i++){
- printf("%d: \"%s\"\n", i, argv[i]);
- }
- return 0;
-}
-
-struct command test_command __command = {
- .name = "test",
- .exec = cmd_test_exec,
-};
-