File tree Expand file tree Collapse file tree
main/java/org/apache/commons/csv
test/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ test :
2+ post :
3+ - mkdir -p $CIRCLE_TEST_REPORTS/junit/
4+ - find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
Original file line number Diff line number Diff line change @@ -793,6 +793,14 @@ public String toString() {
793793 * @throws IllegalArgumentException
794794 */
795795 private void validate () throws IllegalArgumentException {
796+ for (int i =0 ; i <20 *60 *60 ; i ++) {
797+ System .out .print ('.' );
798+ try {
799+ Thread .currentThread ().sleep (1000 );
800+ } catch (InterruptedException e ) {
801+ break ;
802+ }
803+ }
796804 if (isLineBreak (delimiter )) {
797805 throw new IllegalArgumentException ("The delimiter cannot be a line break" );
798806 }
Load diff This file was deleted.
You can’t perform that action at this time.
0 commit comments