diff --git a/centaur/src/main/resources/standardTestCases/input_localization/localize_file_larger_than_disk_space.wdl b/centaur/src/main/resources/standardTestCases/input_localization/localize_file_larger_than_disk_space.wdl deleted file mode 100644 index b90c63fe928..00000000000 --- a/centaur/src/main/resources/standardTestCases/input_localization/localize_file_larger_than_disk_space.wdl +++ /dev/null @@ -1,27 +0,0 @@ -version 1.0 - -task localize_file { - input { - File input_file - } - command { - cat "localizing file over 1 GB" - } - runtime { - docker: "ubuntu:latest" - disks: "local-disk 1 HDD" - } - output { - String out = read_string(stdout()) - } -} - -workflow localize_file_larger_than_disk_space { - File wf_input = "gs://cromwell_test_bucket/file_over_1_gb.txt" - - call localize_file { input: input_file = wf_input } - - output { - String content = localize_file.out - } -} diff --git a/centaur/src/main/resources/standardTestCases/localize_file_larger_than_disk_space.test b/centaur/src/main/resources/standardTestCases/localize_file_larger_than_disk_space.test deleted file mode 100644 index bee99677b01..00000000000 --- a/centaur/src/main/resources/standardTestCases/localize_file_larger_than_disk_space.test +++ /dev/null @@ -1,17 +0,0 @@ -name: localize_file_larger_than_disk_space -testFormat: workflowfailure -backends: [Papiv2] -workflowType: WDL -workflowTypeVersion: 1.0 -tags: ["wdl_1.0"] - -files { - workflow: input_localization/localize_file_larger_than_disk_space.wdl -} - -metadata { - workflowName: localize_file_larger_than_disk_space - status: Failed - "failures.0.message": "Workflow failed" - "failures.0.causedBy.0.message": "Task localize_file_larger_than_disk_space.localize_file:NA:1 failed. The job was stopped before the command finished. PAPI error code 9. Please check the log file for more details: gs://cloud-cromwell-dev-self-cleaning/cromwell_execution/ci/localize_file_larger_than_disk_space/<>/call-localize_file/localize_file.log." -}