From b9b09375519874cf4ea6b364a355f2e796aeb598 Mon Sep 17 00:00:00 2001 From: Ramon Asuncion Date: Wed, 15 Oct 2025 14:36:28 -0700 Subject: [PATCH] [Test][PrintAsObjC] Remove process substitution for lit compatibility --- test/PrintAsObjC/unmodified.swift | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/test/PrintAsObjC/unmodified.swift b/test/PrintAsObjC/unmodified.swift index b1f2e208b4d7d..854d2a85ad35d 100644 --- a/test/PrintAsObjC/unmodified.swift +++ b/test/PrintAsObjC/unmodified.swift @@ -4,13 +4,17 @@ // RUN: %S/../Inputs/getmtime.py %t/out.h > %t/orig-mtime.txt // RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) %s -typecheck -verify -emit-objc-header-path %t/out.h -// RUN: diff %t/orig-mtime.txt <(%S/../Inputs/getmtime.py %t/out.h) +// RUN: %S/../Inputs/getmtime.py %t/out.h > %t/new-mtime.txt +// RUN: diff %t/orig-mtime.txt %t/new-mtime.txt + // RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) %s -typecheck -verify -emit-objc-header-path %t/out.h -DPRIVATE_EXTRA -// RUN: diff %t/orig-mtime.txt <(%S/../Inputs/getmtime.py %t/out.h) +// RUN: %S/../Inputs/getmtime.py %t/out.h > %t/private-mtime.txt +// RUN: diff %t/orig-mtime.txt %t/private-mtime.txt // RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) %s -typecheck -verify -emit-objc-header-path %t/out.h -DPUBLIC_EXTRA -// RUN: not diff %t/orig-mtime.txt <(%S/../Inputs/getmtime.py %t/out.h) +// RUN: %S/../Inputs/getmtime.py %t/out.h > %t/public-mtime.txt +// RUN: not diff %t/orig-mtime.txt %t/public-mtime.txt // REQUIRES: objc_interop