Files
swift-mirror/test/remote-run/download.test-sh
Jordan Rose 1f9ef88ec1 [test] Check for sftp-server for remote-run --debug-as-local tests (#18759)
Not all systems have sftp-server installed.
2018-08-16 13:05:40 -07:00

17 lines
473 B
Plaintext

REQUIRES: sftp_server
RUN: %empty-directory(%t)
RUN: %empty-directory(%t-REMOTE)
RUN: %debug-remote-run --output-prefix %t touch %t/output
RUN: ls %t/ | %FileCheck %s
RUN: ls %t-REMOTE/output/ | %FileCheck %s
RUN: %empty-directory(%t)
RUN: %empty-directory(%t/nested)
RUN: %empty-directory(%t-REMOTE)
RUN: %debug-remote-run --output-prefix %t touch %t/nested/output
RUN: ls %t/nested/ | %FileCheck %s
RUN: ls %t-REMOTE/output/nested/ | %FileCheck %s
CHECK: {{^output$}}