[clang] Fix a unit test input file (PR #102567)

Ian Anderson via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 8 21:55:20 PDT 2024


https://github.com/ian-twilightcoder created https://github.com/llvm/llvm-project/pull/102567

I forgot to update the version info in the SDKSettings file when I updated it to the real version relevant to the test. The version in the SDKSettings file isn't actually used for anything in the test, but might as well have realistic values.

>From 23f2ad9507fb6a8edb0f2194448e0eb2ac8c2652 Mon Sep 17 00:00:00 2001
From: Ian Anderson <iana at apple.com>
Date: Thu, 8 Aug 2024 21:54:40 -0700
Subject: [PATCH] Fix a unit test input file

I forgot to update the version info in the SDKSettings file when I updated it to the real version relevant to the test. The version in the SDKSettings file isn't actually used for anything in the test, but might as well have realistic values.
---
 clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json b/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
index 77b70e1a83c19c..ced45d5c219962 100644
--- a/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
+++ b/clang/test/Driver/Inputs/MacOSX15.0.sdk/SDKSettings.json
@@ -1 +1 @@
-{"Version":"990.0", "MaximumDeploymentTarget": "99.0.99"}
+{"Version":"15.0", "MaximumDeploymentTarget": "15.0.99"}



More information about the cfe-commits mailing list