lxc: Update lxc-test-attach For Enea Linux, the SysV init file is different from busybox, causing cmp to return an error. In order to preserve the test's logic it was replaced with a command which succeeds in every situation: (e.g. search for root in /etc/passwd using grep). Upstream-Status: Pending Signed-off-by: Petre Pircalabu --- a/src/tests/attach.c +++ b/src/tests/attach.c @@ -237,8 +237,8 @@ static int test_attach_cmd(struct lxc_co { int ret; pid_t pid; - char *argv[] = {"cmp", "-s", "/sbin/init", "/bin/busybox", NULL}; - lxc_attach_command_t command = {"cmp", argv}; + char *argv[] = {"grep", "-q", "root", "/etc/passwd", NULL}; + lxc_attach_command_t command = {"grep", argv}; lxc_attach_options_t attach_options = LXC_ATTACH_OPTIONS_DEFAULT; TSTOUT("Testing attach with success command...\n");