Changes in / [843ca9f:a3ade94]
- Location:
- tests
- Files:
-
- 2 edited
-
concurrent/examples/boundedBufferEXT.cfa (modified) (2 diffs)
-
test.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/examples/boundedBufferEXT.cfa
r843ca9f ra3ade94 1 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo 3 // 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. … … 87 87 } 88 88 89 enum { Prods = 4, Cons = 5 };90 Producer * prods[Prods];91 Consumer * cons[Cons];92 93 89 int main() { 94 90 Buffer(int) buffer; 91 enum { Prods = 4, Cons = 5 }; 92 Producer * prods[Prods]; 93 Consumer * cons[Cons]; 95 94 int sums[Cons]; 96 95 int i; -
tests/test.py
r843ca9f ra3ade94 116 116 parser.add_argument('--arch', help='Test for specific architecture', type=comma_separated(str), default=None) 117 117 parser.add_argument('--continue', help='When multiple specifications are passed (debug/install/arch), sets whether or not to continue if the last specification failed', type=yes_no, default='yes', dest='continue_') 118 parser.add_argument('--timeout', help='Maximum duration in seconds after a single test is considered to have timed out', type=int, default= 120)118 parser.add_argument('--timeout', help='Maximum duration in seconds after a single test is considered to have timed out', type=int, default=60) 119 119 parser.add_argument('--global-timeout', help='Maximum cumulative duration in seconds after the ALL tests are considered to have timed out', type=int, default=7200) 120 120 parser.add_argument('--timeout-with-gdb', help='Instead of killing the command when it times out, orphan it and print process id to allow gdb to attach', type=yes_no, default="no")
Note:
See TracChangeset
for help on using the changeset viewer.