File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1111 - checkout
1212 - run : git clone https://github.com/creationix/nvm $HOME/.nvm && cd $HOME/.nvm && git checkout v0.33.9 && echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV && echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV
1313 - run : nvm install 10.0.0 && nvm alias default 10.0.0
14- - run : cd /usr/local && sudo rm -rf go && curl https://storage.googleapis.com/golang/go1.11.2 .linux-amd64.tar.gz | sudo tar -xz
14+ - run : cd /usr/local && sudo rm -rf go && curl https://storage.googleapis.com/golang/go1.11.5 .linux-amd64.tar.gz | sudo tar -xz
1515 - run : echo 'export PATH="$PATH:/usr/local/go/bin:$HOME/go/bin"' >> $BASH_ENV
1616 - run : go get -t -d -v ./...
1717 - run : go install -v
Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ var knownFails = map[string]failReason{
112112 "fixedbugs/issue22662b.go" : {category : usesUnsupportedPackage , desc : "os/exec.Command unsupported" },
113113 "fixedbugs/issue23188.go" : {desc : "incorrect order of evaluation of index operations" },
114114 "fixedbugs/issue24547.go" : {desc : "incorrect computing method sets with shadowed methods" },
115+
116+ // These are new tests in Go 1.11.5
117+ "fixedbugs/issue28688.go" : {category : notApplicable , desc : "testing runtime optimisations" },
115118}
116119
117120type failCategory uint8
You can’t perform that action at this time.
0 commit comments