Files
SwiftShell/Tests/Scripts/runtests.bash
T
Kare Morstol 4916480f4e Fix #14: Support building with Swift Package Manager.
That was easier than I feared.
2016-02-23 03:17:06 +01:00

32 lines
1.0 KiB
Bash
Executable File

#!/usr/bin/env bash
PROJECT_ROOT=../..
# Build the framework and record any errors.
BUILDERRORS=$(xcodebuild -project $PROJECT_ROOT/SwiftShell2.xcodeproj/ 2>&1 >/dev/null)
# If there were any errors (exit code is not 0), print them and exit.
if [ $? -ne 0 ]; then
printf "$BUILDERRORS \n"
exit 1
fi
# Make sure the swiftshell script will use the newly built framework.
export SWIFTSHELL_FRAMEWORK_PATH=$PROJECT_ROOT/build/Release/
# Import the unit testing script.
. assert.sh
# Be aware the “assert” command does not check standard error output or exit code.
assert "./print_name_and_args.swift 1 2" "print_name_and_args.swift \"1\" \"2\""
assert_raises "./exitswhenopeningnon-existentfile.swift" 132
assert "cat onetwothree.txt | ./print_linenumbers.swift" "1: one\n2: two\n3: three"
assert "./stream_out.swift" " 3"
assert "./callswiftscriptfromswift.swift" "1: one\n2: two\n3: three"
assert "./readfilelinebyline.swift" "one\ntwo\nthree"
assert_raises "./readandwritefiles.swift" 0
# end of test suite
assert_end SwiftShell