diff options
author | Rob Landley <rob@landley.net> | 2014-09-20 13:09:14 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-09-20 13:09:14 -0500 |
commit | 387edf547eb09b27ca6d49772eb048d729f09cf4 (patch) | |
tree | 59d482f33735690cab6d90723393afa1e2c8dce5 /scripts/test/hostname.test | |
parent | d3df423a6cde0c6282658ff628574771d3824d71 (diff) | |
download | toybox-387edf547eb09b27ca6d49772eb048d729f09cf4.tar.gz |
Move testsuite out of scripts/test into its own top level tests directory, and make ctrl-c kill "make test" more reliably.
Diffstat (limited to 'scripts/test/hostname.test')
-rw-r--r-- | scripts/test/hostname.test | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/test/hostname.test b/scripts/test/hostname.test deleted file mode 100644 index 11948458..00000000 --- a/scripts/test/hostname.test +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -# Copyright 2014 Divya Kothari <divya.s.kothari@gmail.com> -# Copyright 2014 Naha Maggu <maggu.neha@gmail.com> - -[ -f testing.sh ] && . testing.sh - -#testing "name" "command" "result" "infile" "stdin" - -# Get system hostname -hostnameExe=`which hostname` -hostnameOut=`$hostnameExe` - -# New hostname -NewHostname="NewHostName.system" - -testing "Hostname - Get" "hostname" "$hostnameOut\n" "" "" -testing "Hostname - Set, Get and then Reset" "hostname $NewHostname; hostname; hostname $hostnameOut; hostname" "$NewHostname\n$hostnameOut\n" "" "" |