123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- AT_SETUP([long names in V7 archives])
- AT_KEYWORDS([longname longv7])
- m4_define([DIR],[this_is_a_very_long_name_for_a_directory_which_causes_problems])
- m4_define([FILE],[this_is_a_very_long_file_name_which_raises_issues.c])
- AT_TAR_CHECK([
- mkdir DIR
- touch DIR/FILE
- tar cf archive DIR
- echo separator
- tar tf archive
- ],
- [0],
- [separator
- DIR/
- ],
- [tar: DIR/FILE: file name is too long (max 99)
- tar: Error exit delayed from previous errors
- ],
- [],[],[v7])
- AT_CLEANUP
|