Changeset 38bfe05b
- Timestamp:
- May 26, 2017, 6:56:19 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 8c700c1, 8f61052c
- Parents:
- 01b9928 (diff), 5c69a1e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r01b9928 r38bfe05b 28 28 wrap([$class: 'TimestamperBuildWrapper']) { 29 29 30 notify_server( )30 notify_server(1) 31 31 32 32 prepare_build() … … 46 46 publish() 47 47 48 notify_server( )48 notify_server(45) 49 49 } 50 50 } … … 171 171 } 172 172 173 def notify_server( ) {174 sh 'curl --silent -X POST http://plg2:8082/jenkins/notify > /dev/null || true'173 def notify_server(int wait) { 174 sh """curl --silent --data "wait=${wait}" -X POST http://plg2:8082/jenkins/notify > /dev/null || true""" 175 175 return 176 176 } -
src/tests/.expect/32/math.txt
r01b9928 r38bfe05b 22 22 cos:0.540302 0.54030230586814 0.540302305868139717 0.83373-0.988898i 0.833730025131149-0.988897705762865i 0.833730025131149049-0.988897705762865096i 23 23 tan:1.55741 1.5574077246549 1.55740772465490223 0.271753+1.08392i 0.271752585319512+1.08392332733869i 0.271752585319511717+1.08392332733869454i 24 asin:1.5708 1.5707963267949 1.57079632679489662 0.6662 39+1.06128i 0.666239432492515+1.06127506190504i 0.666239432492515255+1.06127506190503565i24 asin:1.5708 1.5707963267949 1.57079632679489662 0.66624+1.06128i 0.666239432492515+1.06127506190504i 0.666239432492515255+1.06127506190503565i 25 25 acos:0 0 0 0.904557-1.06128i 0.904556894302381-1.06127506190504i 0.904556894302381364-1.06127506190503565i 26 26 atan:0.785398 0.785398163397448 0.78539816339744831 1.01722+0.402359i 1.01722196789785+0.402359478108525i 1.01722196789785137+0.402359478108525094i -
src/tests/sched-int-block.c
r01b9928 r38bfe05b 8 8 9 9 enum state_t { WAITED, SIGNAL, BARGE }; 10 11 monitor global_t {};12 10 13 11 monitor global_data_t {
Note: See TracChangeset
for help on using the changeset viewer.