Skip to content

Commit 627046d

Browse files
committed
test: repair Autodiff/validation-test/optional-property on Win32
The test relies on the module name being `null`. This is implied by the `-o /dev/null`. However, that is not guaranteed. Explicitly use the desired module name.
1 parent 887464b commit 627046d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/AutoDiff/validation-test/optional-property.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// RUN: %target-run-simple-swift
2-
// RUN: %target-swift-emit-sil -Xllvm -debug-only=differentiation -o /dev/null 2>&1 %s | %FileCheck %s
2+
// RUN: %target-swift-emit-sil -Xllvm -debug-only=differentiation -module-name null -o /dev/null 2>&1 %s | %FileCheck %s
33
// REQUIRES: executable_test
44
// REQUIRES: asserts
55

0 commit comments

Comments
 (0)