From 62b7cf45628eabf62a2191af3f4cc7f97d87f4d5 Mon Sep 17 00:00:00 2001 From: Hobbs Date: Thu, 30 Jan 2025 16:38:56 -0800 Subject: [PATCH] t: add default for test of invalid qmanager policy Problem: the example config files for tests in t/conf.d includes an example of invalid policy settings, both for match-policy in resource and queue-policy in fluxion. This configuration is only used in t1005, where qmanager is tested to ensure it tolerates an invalid queue policy and defaults to fcfs. Recently, the resource module was updated to not tolerate invalid policies, but this shouldn't change the behavior of qmanager. Use first in the sched-fluxion-resource toml file example for this test. --- t/conf.d/09-invalid-policy/sched-fluxion-resource.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/conf.d/09-invalid-policy/sched-fluxion-resource.toml b/t/conf.d/09-invalid-policy/sched-fluxion-resource.toml index ba49e1c4a..abeb6b639 100644 --- a/t/conf.d/09-invalid-policy/sched-fluxion-resource.toml +++ b/t/conf.d/09-invalid-policy/sched-fluxion-resource.toml @@ -1,6 +1,6 @@ [sched-fluxion-resource] -match-policy = "invalid" +match-policy = "first" load-allowlist="node,core,gpu" reserve-vtx-vec=200000 prune-filters="ALL:core,ALL:gpu"