brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.4 KiB · 5c4b24f Raw
47 lines · c
1// Path seperator differences2// UNSUPPORTED: system-windows3 4// RUN: rm -rf %t && mkdir %t5// RUN: cp %S/Inputs/resource_directory/* %t6 7// Deduce the resource directory from the compiler path.8//9// With `%clang-scan-deps --resource-dir-recipe modify-compiler-path`, the10// resource directory should be identical to `%clang -print-resource-dir`.11// (Assuming both binaries are built from the same Git checkout.)12// Here we get the expected path by running `%clang -print-resource-dir` and13// then verify `%clang-scan-deps` arrives at the same path by calling the14// `Driver::GetResourcesPath` function.15//16// RUN: %clang -print-resource-dir | tr -d '\n' > %t/resource-dir17// RUN: sed -e "s|CLANG|%clang|g" -e "s|DIR|%/t|g" \18// RUN:   %S/Inputs/resource_directory/cdb.json.template > %t/cdb_path.json19//20// RUN: clang-scan-deps -compilation-database %t/cdb_path.json --format experimental-full \21// RUN:   --resource-dir-recipe modify-compiler-path > %t/result_path.json22// RUN: cat %t/result_path.json | sed 's:\\\\\?:/:g' \23// RUN:   | FileCheck %s --check-prefix=CHECK-PATH -DEXPECTED_RESOURCE_DIR="%{readfile:%t/resource-dir}"24// CHECK-PATH:      "-resource-dir"25// CHECK-PATH-NEXT: "[[EXPECTED_RESOURCE_DIR]]"26 27// Run the compiler and ask it for the resource directory.28//29// With `%clang-scan-deps --resource-dir-recipe invoke-compiler`, the resource30// directory should be identical to `<clang> -print-resource-dir`, where <clang>31// is an arbitrary version of Clang. (This configuration is not really supported.)32// Here we hard-code the expected path into `%t/compiler` and then verify33// `%clang-scan-deps` arrives at the path by actually running the executable.34//35// RUN: echo "#!/bin/sh"                      > %t/compiler36// RUN: echo "echo '/custom/compiler/resources'" >> %t/compiler37// RUN: chmod +x %t/compiler38// RUN: sed -e "s|CLANG|%/t/compiler|g" -e "s|DIR|%/t|g" \39// RUN:   %S/Inputs/resource_directory/cdb.json.template > %t/cdb_invocation.json40//41// RUN: clang-scan-deps -compilation-database %t/cdb_invocation.json --format experimental-full \42// RUN:   --resource-dir-recipe invoke-compiler > %t/result_invocation.json43// RUN: cat %t/result_invocation.json | sed 's:\\\\\?:/:g' \44// RUN:   | FileCheck %s --check-prefix=CHECK-PATH -DEXPECTED_RESOURCE_DIR="/custom/compiler/resources"45// CHECK-INVOCATION:      "-resource-dir"46// CHECK-INVOCATION-NEXT: "[[EXPECTED_RESOURCE_DIR]]"47