1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- AT_SETUP([long names in V7 archives])
- AT_KEYWORDS([longname longv7])
- m4_pushdef([DIR],[this_is_a_very_long_name_for_a_directory_which_causes_problems])
- m4_pushdef([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: Exiting with failure status due to previous errors
- ],
- [],[],[v7])
- m4_popdef([FILE])
- m4_popdef([DIR])
- AT_CLEANUP
|