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 @@
AT_SETUP([IDEF0955])
AT_CHECK([
test $MU_ULONG_MAX_1 -eq 0 && AT_SKIP_TEST
test "$MU_ULONG_MAX_1" = 0 && AT_SKIP_TEST
cat > input <<EOT
1 select INBOX
......
......@@ -17,7 +17,7 @@
AT_SETUP([IDEF0956])
AT_CHECK([
test $MU_ULONG_MAX_1 -eq 0 && AT_SKIP_TEST
test "$MU_ULONG_MAX_1" = 0 && AT_SKIP_TEST
cat > input <<EOT
1 select INBOX
......