[all-commits] [llvm/llvm-project] ed5acb: [fuzzer, CMake] Add config name for fuzzer lit test

Wu Yingcong via All-commits all-commits at lists.llvm.org
Mon Aug 28 14:40:00 PDT 2023


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: ed5acb1425b5df1156d2ea84db0dc6b3cf3e7025
      https://github.com/llvm/llvm-project/commit/ed5acb1425b5df1156d2ea84db0dc6b3cf3e7025
  Author: Wu, Yingcong <yingcong.wu at intel.com>
  Date:   2023-08-28 (Mon, 28 Aug 2023)

  Changed paths:
    M compiler-rt/test/fuzzer/CMakeLists.txt

  Log Message:
  -----------
  [fuzzer,CMake] Add config name for fuzzer lit test

Add config name for fuzzer lit test, to make it easier to identify failures are with which config.

Before this change, same lit tests with different configs will share the same test name.
```
********************
Failed Tests (2):
  libFuzzer :: fuzzer-flags.test
  libFuzzer :: fuzzer-flags.test
```
Actually this is a failure of two lit tests(two configs of the same test).

With this change, the names will be different.
```
********************
Failed Tests (2):
  libFuzzer-i386-default-Linux ::fuzzer-flags.test
  libFuzzer-x86_64-default-Linux :: fuzzer-flags.test
```

Reviewed By: MaskRay, vitalybuka

Differential Revision: https://reviews.llvm.org/D158696




More information about the All-commits mailing list