summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1999-01-27 22:36:24 +0000
committerwtc%netscape.com <devnull@localhost>1999-01-27 22:36:24 +0000
commitd1b88b7a3196ea0378831c5da854c5aa888e19dc (patch)
tree8b9e97cf8a469cc7b82548da1cfe59e14c3fe13a
parent4bf80757363d5a7c75b0cbff325139bee3a369af (diff)
downloadnspr-hg-d1b88b7a3196ea0378831c5da854c5aa888e19dc.tar.gz
changed value of TOO_LONG to 5000
-rw-r--r--pr/tests/op_2long.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/pr/tests/op_2long.c b/pr/tests/op_2long.c
index 81ef29a2..88459ab5 100644
--- a/pr/tests/op_2long.c
+++ b/pr/tests/op_2long.c
@@ -48,9 +48,11 @@ static PRFileDesc *t1;
PRIntn error_code;
/*
- * 4096 should exceed any system's maximum file name length
+ * should exceed any system's maximum file name length
+ * Note: was set at 4096. This is legal on some unix (Linux 2.1+) platforms.
+ *
*/
-#define TOO_LONG 4096
+#define TOO_LONG 5000
int main(int argc, char **argv)
{