aaron.ballman added inline comments.
================ Comment at: clang/test/ExtractAPI/enum.c:3 // RUN: split-file %s %t -// RUN: sed -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \ +// RUN: sed -e "s@INPUT_FILE@%/et/input.h@g" -e "s@INPUT_DIR@%{/t:regex_replacement}@g" \ // RUN: %t/reference.output.json.in >> %t/reference.output.json ---------------- This test's use of `diff` makes the diagnostic changes rather challenging. We can't diff the file path that's included when printing an unnamed object, because that path may be different from machine to machine. `diff` doesn't have any wildcard matching functionality to help here either. So we use `sed` to mutate the test file.. but the output uses the path of `%t` with escapes and we don't have a sed-compatible way to do that on Windows. e.g., the output we want to match will contain `F:\\users\\aballman\\desktop\\test.c` on Windows but `%t` gives `F:\users\aballman\desktop\test.c` which sed turns into `F:sers ballman esktop est.c` or some other garbled form. I'm hoping someone has a better way to approach this. I added `%/et` (for escaped %t) to get the behavior I needed, but I'd prefer not to modify lit for this. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134813/new/ https://reviews.llvm.org/D134813 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits