Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
cfb0dca6
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
cfb0dca6
编写于
11月 24, 2008
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix test suite build when Xen driver is disabled
上级
6f5600c8
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
43 addition
and
54 deletion
+43
-54
ChangeLog
ChangeLog
+9
-0
tests/Makefile.am
tests/Makefile.am
+34
-14
tests/sexpr2xmltest.c
tests/sexpr2xmltest.c
+0
-10
tests/testutilsxen.c
tests/testutilsxen.c
+0
-2
tests/xencapstest.c
tests/xencapstest.c
+0
-11
tests/xmconfigtest.c
tests/xmconfigtest.c
+0
-10
tests/xml2sexprtest.c
tests/xml2sexprtest.c
+0
-7
未找到文件。
ChangeLog
浏览文件 @
cfb0dca6
Mon Nov 24 19:22:40 GMT 2008 Dnaiel P. Berrange <berrange@redhat.com>
* tests/Makefile.am, tests/sexpr2xmltest.c,
tests/testutilsxen.c, tests/xencapstest.c,
tests/xmconfigtest.c, tests/xml2sexprtest.c: Disable all
Xen tests when Xen driver build is disabled. Remove unneccessary
WITH_XEN conditionals from source, since the entire build
is disabled in Makefile.am
Mon Nov 24 16:49:40 GMT 2008 Dnaiel P. Berrange <berrange@redhat.com>
* autobuild.sh: Disable UML driver on mingw32 biuld
...
...
tests/Makefile.am
浏览文件 @
cfb0dca6
...
...
@@ -43,10 +43,13 @@ EXTRA_DIST = \
nodeinfodata
\
domainschematest
noinst_PROGRAMS
=
xmlrpctest xml2sexprtest sexpr2xmltest virshtest conftest
\
reconnect xmconfigtest xencapstest
\
noinst_PROGRAMS
=
xmlrpctest virshtest conftest
\
nodeinfotest statstest qparamtest
if
WITH_XEN
noinst_PROGRAMS
+=
xml2sexprtest sexpr2xmltest
\
reconnect xmconfigtest xencapstest
endif
if
WITH_QEMU
noinst_PROGRAMS
+=
qemuxml2argvtest qemuxml2xmltest
endif
...
...
@@ -68,12 +71,22 @@ endif
EXTRA_DIST
+=
$(test_scripts)
TESTS
=
xml2sexprtest sexpr2xmltest virshtest xmconfigtest
\
xencapstest nodeinfotest
\
statstest qparamtest
$(test_scripts)
TESTS
=
virshtest
\
nodeinfotest
\
statstest
\
qparamtest
\
$(test_scripts)
if
WITH_XEN
TESTS
+=
xml2sexprtest
\
sexpr2xmltest
\
xmconfigtest
\
xencapstest
if
ENABLE_XEN_TESTS
TESTS
+=
reconnect
TESTS
+=
reconnect
endif
endif
if
WITH_QEMU
TESTS
+=
qemuxml2argvtest qemuxml2xmltest
endif
...
...
@@ -105,6 +118,7 @@ xmlrpctest_SOURCES = \
xmlrpctest_LDADD
=
$(LDADDS)
if
WITH_XEN
xml2sexprtest_SOURCES
=
\
xml2sexprtest.c testutilsxen.c testutilsxen.h
\
testutils.c testutils.h
...
...
@@ -120,6 +134,20 @@ xmconfigtest_SOURCES = \
testutils.c testutils.h
xmconfigtest_LDADD
=
../src/libvirt_driver_xen.la
$(LDADDS)
xencapstest_SOURCES
=
\
xencapstest.c testutils.h testutils.c
xencapstest_LDADD
=
../src/libvirt_driver_xen.la
$(LDADDS)
reconnect_SOURCES
=
\
reconnect.c
reconnect_LDADD
=
$(LDADDS)
else
EXTRA_DIST
+=
xml2sexprtest.c sexpr2xmltest.c xmconfigtest.c
\
xencapstest.c reconnect.c
\
testutilsxen.c testutilsxen.h
endif
if
WITH_QEMU
qemuxml2argvtest_SOURCES
=
\
qemuxml2argvtest.c testutilsqemu.c testutilsqemu.h
\
...
...
@@ -143,10 +171,6 @@ conftest_SOURCES = \
conftest.c
conftest_LDADD
=
$(LDADDS)
xencapstest_SOURCES
=
\
xencapstest.c testutils.h testutils.c
xencapstest_LDADD
=
../src/libvirt_driver_xen.la
$(LDADDS)
nodeinfotest_SOURCES
=
\
nodeinfotest.c testutils.h testutils.c
nodeinfotest_LDADD
=
$(LDADDS)
...
...
@@ -159,8 +183,4 @@ qparamtest_SOURCES = \
qparamtest.c testutils.h testutils.c
qparamtest_LDADD
=
$(LDADDS)
reconnect_SOURCES
=
\
reconnect.c
reconnect_LDADD
=
$(LDADDS)
CLEANFILES
=
*
.cov
*
.gcov .libs/
*
.gcda .libs/
*
.gcno
*
.gcno
*
.gcda
tests/sexpr2xmltest.c
浏览文件 @
cfb0dca6
...
...
@@ -4,8 +4,6 @@
#include <string.h>
#include <unistd.h>
#ifdef WITH_XEN
#include "internal.h"
#include "xml.h"
#include "xend_internal.h"
...
...
@@ -146,11 +144,3 @@ mymain(int argc, char **argv)
VIRT_TEST_MAIN
(
mymain
)
#else
/* WITHOUT_XEN */
int
main
(
void
)
{
fprintf
(
stderr
,
"libvirt compiled without Xen support
\n
"
);
return
(
0
);
}
#endif
/* WITH_XEN */
tests/testutilsxen.c
浏览文件 @
cfb0dca6
#include <config.h>
#ifdef WITH_XEN
#include <sys/utsname.h>
#include <stdlib.h>
...
...
@@ -52,4 +51,3 @@ cleanup:
virCapabilitiesFree
(
caps
);
return
NULL
;
}
#endif
tests/xencapstest.c
浏览文件 @
cfb0dca6
...
...
@@ -5,8 +5,6 @@
#include <string.h>
#include <unistd.h>
#ifdef WITH_XEN
#include "internal.h"
#include "xml.h"
#include "testutils.h"
...
...
@@ -225,12 +223,3 @@ mymain(int argc, char **argv)
VIRT_TEST_MAIN
(
mymain
)
#else
/* !WITH_XEN */
int
main
(
void
)
{
exit
(
EXIT_SUCCESS
);
}
#endif
/* !WITH_XEN */
tests/xmconfigtest.c
浏览文件 @
cfb0dca6
...
...
@@ -27,8 +27,6 @@
#include <string.h>
#include <unistd.h>
#ifdef WITH_XEN
#include "internal.h"
#include "datatypes.h"
#include "xen_unified.h"
...
...
@@ -239,11 +237,3 @@ mymain(int argc, char **argv)
VIRT_TEST_MAIN
(
mymain
)
#else
/* WITHOUT_XEN */
int
main
(
void
)
{
fprintf
(
stderr
,
"libvirt compiled without Xen support
\n
"
);
return
(
0
);
}
#endif
/* WITH_XEN */
tests/xml2sexprtest.c
浏览文件 @
cfb0dca6
...
...
@@ -8,8 +8,6 @@
#include <fcntl.h>
#include <unistd.h>
#if WITH_XEN
#include "internal.h"
#include "xend_internal.h"
#include "testutils.h"
...
...
@@ -155,8 +153,3 @@ mymain(int argc, char **argv)
VIRT_TEST_MAIN
(
mymain
)
#else
/* WITH_XEN */
int
main
(
void
)
{
exit
(
77
);
/* means 'test skipped' for automake */
}
#endif
/* ! WITH_XEN */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录