[PECL-CVS] [pecl-file_system-xattr] master: don't run test in parallel
[email protected] (Remi Collet)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Remi Collet (remicollet)
Date: 2026-08-14T12:05:24+02:00
Commit: https://github.com/php/pecl-file_system-xattr/commit/f4c8779378a2d3483c0e07e9b775d9fe8e7df197
Raw diff: https://github.com/php/pecl-file_system-xattr/commit/f4c8779378a2d3483c0e07e9b775d9fe8e7df197.diff
don't run test in parallel
Changed paths:
A tests/CONFLICTS
M tests/003-set-get-link.phpt
M tests/004-create-replace.phpt
Diff:
diff --git a/tests/003-set-get-link.phpt b/tests/003-set-get-link.phpt
index 7e828c5..e276f19 100644
--- a/tests/003-set-get-link.phpt
+++ b/tests/003-set-get-link.phpt
@@ -34,8 +34,8 @@ var_dump(xattr_list($link, XATTR_ALL|XATTR_DONTFOLLOW));
Done
--CLEAN--
<?php
-unlink('foo.txt');
-unlink('foo.lnk');
+@unlink('foo.txt');
+@unlink('foo.lnk');
?>
--EXPECT--
-- Set
diff --git a/tests/004-create-replace.phpt b/tests/004-create-replace.phpt
index f21e3b7..1bd87b6 100644
--- a/tests/004-create-replace.phpt
+++ b/tests/004-create-replace.phpt
@@ -26,7 +26,7 @@ var_dump(xattr_get($fic, $attr));
?>
Done
--CLEAN--
-<?php unlink('foo.txt'); ?>
+<?php @unlink('foo.txt'); ?>
--EXPECTF--
Warning: xattr_set Attribute user.php.test doesn't exists in %s004-create-replace.php on line 7
diff --git a/tests/CONFLICTS b/tests/CONFLICTS
new file mode 100644
index 0000000..0702cb5
--- /dev/null
+++ b/tests/CONFLICTS
@@ -0,0 +1 @@
+all