From 42816900211201eeef34be06b4e3b058cb5e8d19 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Tue, 10 Nov 2009 10:54:51 -0500 Subject: [PATCH] Fix t_case_autoflush* mis-sharing directory --- test_regress/t/t_sys_file_basic.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_sys_file_basic.v b/test_regress/t/t_sys_file_basic.v index aee517339..98c1dd901 100644 --- a/test_regress/t/t_sys_file_basic.v +++ b/test_regress/t/t_sys_file_basic.v @@ -30,7 +30,7 @@ module t; `ifdef AUTOFLUSH // The "w" is required so we get a FD not a MFD - file = $fopen("obj_dir/t_sys_file_basic/t_sys_file_autoflush.log","w"); + file = $fopen("obj_dir/t_sys_file_autoflush/t_sys_file_autoflush.log","w"); `else // The "w" is required so we get a FD not a MFD file = $fopen("obj_dir/t_sys_file_basic/t_sys_file_basic_test.log","w");