Skip to content

Commit

Permalink
Merge pull request #931 from davidozog/pr/c99_in_spec_test
Browse files Browse the repository at this point in the history
Use standard C interface in spec-tests (for now)
  • Loading branch information
David Ozog authored Feb 24, 2020
2 parents 1d8fd0c + d5b4b3c commit 6f5a786
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/spec-example/shmemx_wait_until_any_vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ int main(void)

/* All odd PEs put 2 and all even PEs put 1 */
for (int i = 0; i < npes; i++) {
shmem_atomic_set(&ivars[mype], mype % 2 + 1, i);
shmem_int_atomic_set(&ivars[mype], mype % 2 + 1, i);

/* Set cmp_values to the expected values coming from each PE */
cmp_values[i] = i % 2 + 1;
}
Expand Down

0 comments on commit 6f5a786

Please sign in to comment.