Increase filter time value for failing ftime-trace-granularity test (#6532)

ftime-trace-granularity test was failing in test runs due to the
configured time filter value being too small. The latest test run was
recording duration times of 322308 which is larger than the test's
specified filter value of 99999 causing timings to not be filtered out.

The test is now updated to have a filter value of 999999, which should
properly filter out timings.

Fixes #6528

---------

Co-authored-by: Cooper Partin <coopp@ntdev.microsoft.com>
This commit is contained in:
Cooper Partin 2024-04-15 16:04:33 -07:00 коммит произвёл GitHub
Родитель d60dffef1a
Коммит 3546bde202
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,5 @@
// RUN: %dxc -E main -T vs_6_0 %s -ftime-trace -ftime-trace-granularity=99999 | FileCheck %s
// RUN: %dxc -E main -T vs_6_0 %s -ftime-trace=%t.json -ftime-trace-granularity=99999
// RUN: %dxc -E main -T vs_6_0 %s -ftime-trace -ftime-trace-granularity=2147483647 | FileCheck %s
// RUN: %dxc -E main -T vs_6_0 %s -ftime-trace=%t.json -ftime-trace-granularity=2147483647
// RUN: cat %t.json | FileCheck %s
// This test runs both stdout and file output paths.