Commit e02df56c e02df56cb384465b3238c46c6f214f27ee8431ab by Sergey Poznyakoff

Bugfix in imap4d testsuite.

Reportedly, the test command on 64 boxes is unable to handle unsigned
long integers.  Install a work over.

* imap4d/tests/IDEF0955.at: Use string comparison in the invocation of test.
* imap4d/tests/IDEF0956.at: Likewise.
1 parent bec7b95e
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
17 AT_SETUP([IDEF0955]) 17 AT_SETUP([IDEF0955])
18 18
19 AT_CHECK([ 19 AT_CHECK([
20 test $MU_ULONG_MAX_1 -eq 0 && AT_SKIP_TEST 20 test "$MU_ULONG_MAX_1" = 0 && AT_SKIP_TEST
21 21
22 cat > input <<EOT 22 cat > input <<EOT
23 1 select INBOX 23 1 select INBOX
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
17 AT_SETUP([IDEF0956]) 17 AT_SETUP([IDEF0956])
18 18
19 AT_CHECK([ 19 AT_CHECK([
20 test $MU_ULONG_MAX_1 -eq 0 && AT_SKIP_TEST 20 test "$MU_ULONG_MAX_1" = 0 && AT_SKIP_TEST
21 21
22 cat > input <<EOT 22 cat > input <<EOT
23 1 select INBOX 23 1 select INBOX
......