mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
freebsd: Avoid /bin/true in commandtest
Rely on PATH and use just true, because on FreeBSD it's /usr/bin/true.
This commit is contained in:
parent
cffba7ea3e
commit
c0e5994aef
@ -1 +1 @@
|
|||||||
A=B /bin/true C
|
A=B true C
|
||||||
|
@ -566,9 +566,9 @@ cleanup:
|
|||||||
*/
|
*/
|
||||||
static int test16(const void *unused ATTRIBUTE_UNUSED)
|
static int test16(const void *unused ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
virCommandPtr cmd = virCommandNew("/bin/true");
|
virCommandPtr cmd = virCommandNew("true");
|
||||||
char *outactual = NULL;
|
char *outactual = NULL;
|
||||||
const char *outexpect = "A=B /bin/true C";
|
const char *outexpect = "A=B true C";
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
int fd = -1;
|
int fd = -1;
|
||||||
|
|
||||||
@ -610,7 +610,7 @@ cleanup:
|
|||||||
*/
|
*/
|
||||||
static int test17(const void *unused ATTRIBUTE_UNUSED)
|
static int test17(const void *unused ATTRIBUTE_UNUSED)
|
||||||
{
|
{
|
||||||
virCommandPtr cmd = virCommandNew("/bin/true");
|
virCommandPtr cmd = virCommandNew("true");
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
char *outbuf;
|
char *outbuf;
|
||||||
char *errbuf;
|
char *errbuf;
|
||||||
|
Loading…
Reference in New Issue
Block a user