Bugfix: Resolve failing acceptance test

This commit is contained in:
kenjones 2017-09-22 23:58:50 -04:00
parent 45e9ad870f
commit cf2f23d747
3 changed files with 2 additions and 3 deletions

View File

@ -5,8 +5,7 @@ set -e
# acceptance test # acceptance test
X=$(./bin/yaml w ./examples/sample.yaml b.c 3 | ./bin/yaml r - b.c) X=$(./bin/yaml w ./examples/sample.yaml b.c 3 | ./bin/yaml r - b.c)
if [ $X != 3 ] if [[ $X != 3 ]]; then
then
echo "Failed acceptance test: expected 2 but was $X" echo "Failed acceptance test: expected 2 but was $X"
exit 1 exit 1
fi fi

View File

@ -3,6 +3,5 @@
# This assumes that gonative and gox is installed as per the 'one time setup' instructions # This assumes that gonative and gox is installed as per the 'one time setup' instructions
# at https://github.com/inconshreveable/gonative # at https://github.com/inconshreveable/gonative
rm build/*
gox -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}" gox -output="build/{{.Dir}}_{{.OS}}_{{.Arch}}"

View File

@ -53,6 +53,7 @@ func newCommandCLI() *cobra.Command {
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose mode") rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose mode")
rootCmd.AddCommand(createReadCmd(), createWriteCmd(), createNewCmd()) rootCmd.AddCommand(createReadCmd(), createWriteCmd(), createNewCmd())
rootCmd.SetOutput(os.Stdout)
return rootCmd return rootCmd
} }