Description: Fix file mode test
 with file_mode set to a+x, the file mode depends on
 the umask of the build host. It's different from the
 author system on Debian builkd host. 
 .
 The simple solution is to set the mode with 0755.
Author: dod
--- a/t/model_tests.d/backend-plainfile-test-conf.pl
+++ b/t/model_tests.d/backend-plainfile-test-conf.pl
@@ -65,7 +65,7 @@
         auto_delete => '1',
         backend => 'PlainFile',
         config_dir => 'debian',
-        file_mode => 'a+x',
+        file_mode => '0755',
         file => '&index(-).&element(-).&element'
     }]
 );
--- a/t/model_tests.d/backend-ini-test-conf.pl
+++ b/t/model_tests.d/backend-ini-test-conf.pl
@@ -58,7 +58,7 @@
         # the $conf_file_name and $conf_dir variable above
         config_dir  => '/etc/',
         file        => 'test.ini',
-        file_mode   => 'g+w',
+        file_mode   => 'a=r,ug+w',
         auto_create => 1,
     }],
 );
