Skip to content

Commit

Permalink
HPCC-31213 Fix smoke test failures
Browse files Browse the repository at this point in the history
In the despray.ecl, remove the DeleteExternalFile calls for
malformed filenames and add a comment.

Signed-off-by: wangkx <[email protected]>
  • Loading branch information
wangkx committed Feb 20, 2024
1 parent 8bfc5f6 commit a8daed9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions testing/regress/ecl/despray.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -315,11 +315,13 @@ SEQUENTIAL(
// Clean-up
FileServices.DeleteLogicalFile(SourceFile),
FileServices.DeleteExternalFile('.', DestFile1),
FileServices.DeleteExternalFile('.', DestFile4),
FileServices.DeleteExternalFile('.', DestFile5),
FileServices.DeleteExternalFile('.', DestFile6),
FileServices.DeleteExternalFile('.', DestFile7),
FileServices.DeleteExternalFile('.', DestFile8),
// The follow files should not exist (see expected failed tests above).
// Calling DeleteExternalFile on malformed filenames will result in another error.
// FileServices.DeleteExternalFile('.', DestFile4),
// FileServices.DeleteExternalFile('.', DestFile5),
// FileServices.DeleteExternalFile('.', DestFile6),
// FileServices.DeleteExternalFile('.', DestFile7),
// FileServices.DeleteExternalFile('.', DestFile8),
FileServices.DeleteExternalFile('.', DestFile9),
FileServices.DeleteExternalFile('.', DestFile11),
);

0 comments on commit a8daed9

Please sign in to comment.