meta-agl-test: add 'aio-stress' to agl-test 59/28059/1
authorduerpei <duep.fnst@fujitsu.com>
Wed, 20 Jul 2022 06:45:43 +0000 (14:45 +0800)
committerduerpei <duep.fnst@fujitsu.com>
Wed, 20 Jul 2022 06:45:43 +0000 (14:45 +0800)
Add the test set of aio-stress to agl-test

Bug-AGL: SPEC-4345

Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: Ic5bee24e24ef1b89a6212d72c7a0a08725e1fe36

meta-agl-test/recipes-platform/packagegroup/packagegroup-agl-extend-test.bb
meta-agl-test/recipes-tests/agl-test-framework/agl-test-framework.bb
meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb [new file with mode: 0644]
meta-agl-test/recipes-tests/aio-stress/files/Makefile [new file with mode: 0644]

index a2e73fd..e253e2a 100644 (file)
@@ -25,6 +25,8 @@ do_install:append() {
     install -d ${D}/usr/AGL/agl-test/template/
     install -m 0644 ${WORKDIR}/git/template/* ${D}/usr/AGL/agl-test/template/
 
+    install -d ${D}/usr/AGL/agl-test/tests/aio-stress/
+    install -m 0644 ${WORKDIR}/git/tests/aio-stress/* ${D}/usr/AGL/agl-test/tests/aio-stress/
     install -d ${D}/usr/AGL/agl-test/tests/bzip2/
     install -m 0644 ${WORKDIR}/git/tests/bzip2/* ${D}/usr/AGL/agl-test/tests/bzip2/
     install -d ${D}/usr/AGL/agl-test/tests/expat/
diff --git a/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb b/meta-agl-test/recipes-tests/aio-stress/aio-stress_0.22.bb
new file mode 100644 (file)
index 0000000..4824107
--- /dev/null
@@ -0,0 +1,33 @@
+SUMMARY = "Aio Stress Test"
+HOMEPAGE = "https://oss.oracle.com/~mason/aio-stress/"
+LICENSE = "GPL-2.0-only"
+SRC_URI[sha256sum] = "3f4cffcc946fb717fff9d8fe932c7c2ee606efff198408d9fbe16955151445f7"
+LIC_FILES_CHKSUM = "file://aio-stress.c;md5=ccb5d196a3736bbd835d582a4e2329c3"
+
+PN = 'aio-stress'
+
+DEPENDS = "libaio"
+
+TARGET_CC_ARCH += "${LDFLAGS}"
+
+SRC_URI = "https://oss.oracle.com/~mason/aio-stress/aio-stress.c \
+           file://Makefile "
+
+S = "${WORKDIR}"
+
+FILES:${PN} += " \
+    /usr/AGL/agl-test/tests/aio-stress/resource \
+"
+
+do_compile() {
+    oe_runmake
+}
+
+do_install:append() {
+    install -d ${D}/usr/AGL/agl-test/tests/aio-stress/resource/
+    install -m 0755 ${WORKDIR}/aio-stress ${D}/usr/AGL/agl-test/tests/aio-stress/resource/
+}
+
+RDEPENDS:${PN} += " \
+    agl-test-framework \
+"
diff --git a/meta-agl-test/recipes-tests/aio-stress/files/Makefile b/meta-agl-test/recipes-tests/aio-stress/files/Makefile
new file mode 100644 (file)
index 0000000..c2b2ffe
--- /dev/null
@@ -0,0 +1,13 @@
+CFLAGS = -Wall
+TARGET = aio-stress
+
+
+all: $(TARGET)
+
+
+$(TARGET): aio-stress.c
+       $(CC) $(CFLAGS) $^ -o $@ -lpthread -laio
+
+
+clean:
+       $(RM) $(TARGET)