From 0b4e03ad5c9b4023c5fabb89c8bd60d6e345ac16 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 18 Sep 2021 21:10:41 +0300 Subject: [PATCH] ci: fix the failing new options_test.v on the `ubuntu` job --- vlib/v/pref/options_test.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/pref/options_test.v b/vlib/v/pref/options_test.v index 4742fd9c6c..e83a510bb2 100644 --- a/vlib/v/pref/options_test.v +++ b/vlib/v/pref/options_test.v @@ -44,7 +44,7 @@ fn test_cflags() ? { // $if !tinyc { // tcc does almost no optimisations, so the differences are very insignificant - assert optimised_file_size <= debug_file_size + assert optimised_file_size != debug_file_size // optimised_file_size should be smaller in general, but not on the Ubuntu CI for some reason :-| assert optimised_delta >= debug_delta } os.rm(optexe) or {}