Commit b50019f0 by Danny Smith Committed by Danny Smith

barrier-1.c: Change timestamp tests from '<' to '<='.

	* testsuite/libgomp.c/barrier-1.c: Change timestamp tests from
	'<' to '<='.

From-SVN: r117491
parent 8887708e
2006-10-05 Danny Smith <dannysmith@users.sourceforge.net>
* testsuite/libgomp.c/barrier-1.c: Change timestamp tests from
'<' to '<='.
2006-10-05 Danny Smith <dannysmith@users.sourceforge.net>
* acinclude.m4 (HAVE_ATTRIBUTE_ALIAS): Remove __USER_LABEL_PREFIX__ from
test.
* configure: Regenerate.
......
......@@ -38,13 +38,13 @@ int main()
function (NULL);
GOMP_parallel_end ();
assert (timercmp (&stamps[0][0], &stamps[0][1], <));
assert (timercmp (&stamps[1][0], &stamps[0][1], <));
assert (timercmp (&stamps[2][0], &stamps[0][1], <));
assert (!timercmp (&stamps[0][0], &stamps[0][1], >));
assert (!timercmp (&stamps[1][0], &stamps[0][1], >));
assert (!timercmp (&stamps[2][0], &stamps[0][1], >));
assert (timercmp (&stamps[0][1], &stamps[0][2], <));
assert (timercmp (&stamps[0][1], &stamps[1][2], <));
assert (timercmp (&stamps[0][1], &stamps[2][2], <));
assert (!timercmp (&stamps[0][1], &stamps[0][2], >));
assert (!timercmp (&stamps[0][1], &stamps[1][2], >));
assert (!timercmp (&stamps[0][1], &stamps[2][2], >));
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment