Skip to content

Commit

Permalink
Revert
Browse files Browse the repository at this point in the history
  • Loading branch information
nao1215 committed Dec 12, 2021
1 parent 18d82f5 commit 8b9c12d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/it/textutils/dos2unix_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,36 +20,36 @@ Cleanup() {
}

TestDos2unixCRLF() {
/usr/local/bin/dos2unix ${TEST_FILE1}
dos2unix ${TEST_FILE1}
file ${TEST_FILE1}
}

TestDos2unixCRLFStatus() {
/usr/local/bin/dos2unix ${TEST_FILE1}
dos2unix ${TEST_FILE1}
}

TestDos2unixThreeFileAtSameTime() {
/usr/local/bin/dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
file ${TEST_FILE1}
file ${TEST_FILE2}
file ${TEST_FILE3}
}

TestDos2unixThreeFileAtSameTime() {
/usr/local/bin/dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
file ${TEST_FILE1}
file ${TEST_FILE2}
file ${TEST_FILE3}
}

TestDos2unixThreeFileAtSameTimeStatus() {
/usr/local/bin/dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
dos2unix ${TEST_FILE1} ${TEST_FILE2} ${TEST_FILE3}
}

TestDos2unixDir() {
/usr/local/bin/dos2unix ${TEST_DIR}
dos2unix ${TEST_DIR}
}

TestDos2unixOneOfThreeFail() {
/usr/local/bin/dos2unix ${TEST_FILE1} ${TEST_DIR} ${TEST_FILE3}
dos2unix ${TEST_FILE1} ${TEST_DIR} ${TEST_FILE3}
}

0 comments on commit 8b9c12d

Please sign in to comment.