Created
December 22, 2016 15:23
-
-
Save laiso/8ea236df2ca6840e176c5fa589854d40 to your computer and use it in GitHub Desktop.
docker run --rm --volume="$(pwd):/app" --workdir=/app -it ibmcom/swift-ubuntu swift test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compile Swift Module 'Quick' (21 sources) | |
Compile Swift Module 'Nimble' (45 sources) | |
Compile Swift Module 'Result' (2 sources) | |
Compile Swift Module 'ReactiveSwift' (19 sources) | |
Compile Swift Module 'ReactiveSwiftTests' (18 sources) | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:92:5: error: value of type 'Expectation<[Int]>' (aka 'Expectation<Array<Int>>') has no member 'toEventually' | |
expect(values).toEventually(equal([ 0 ])) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:109:5: error: value of type 'Expectation<[Int]>' (aka 'Expectation<Array<Int>>') has no member 'toEventually' | |
expect(values).toEventually(equal([ 0, 1, 2 ])) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:136:5: error: value of type 'Expectation<[Int]>' (aka 'Expectation<Array<Int>>') has no member 'toEventually' | |
expect(values).toEventually(equal([ 0, 1, 2 ])) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:156:5: error: value of type 'Expectation<Bool>' has no member 'toEventually' | |
expect{didRun}.toEventually(beTruthy()) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:184:6: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect{value}.toEventually(equal(5)) | |
^~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:197:6: error: value of type 'Expectation<Bool>' has no member 'toEventually' | |
expect{didRun}.toEventually(beTruthy()) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SchedulerSpec.swift:219:6: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect{count}.toEventually(equal(timesToRun)) | |
^~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SignalProducerSpec.swift:1880:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(result).toEventually(equal(1), timeout: 5.0) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SignalProducerSpec.swift:1933:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(result).toEventually(equal(1)) | |
^~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/SignalSpec.swift:321:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(counter.value).toEventually(equal(iterations), timeout: 5) | |
^~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/UnidirectionalBindingSpec.swift:124:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(value).toEventually(equal(1)) | |
^~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/UnidirectionalBindingSpec.swift:154:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(value).toEventually(equal(1)) | |
^~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/UnidirectionalBindingSpec.swift:155:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(mainQueueCounter.value).toEventually(equal(1)) | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/UnidirectionalBindingSpec.swift:158:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(value).toEventually(equal(2)) | |
^~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
/app/Tests/ReactiveSwiftTests/UnidirectionalBindingSpec.swift:159:5: error: value of type 'Expectation<Int>' has no member 'toEventually' | |
expect(mainQueueCounter.value).toEventually(equal(2)) | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~ | |
<unknown>:0: error: build had 1 command failures | |
error: exit(1): /root/swift-3.0.1-RELEASE-ubuntu14.04/usr/bin/swift-build-tool -f /app/.build/debug.yaml test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment