Compare commits
No commits in common. "stream-pmdk-1_fileformat_v6-rhel-8.10.0" and "c8-stream-1_fileformat_v6" have entirely different histories.
stream-pmd
...
c8-stream-
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
0
.pmdk.metadata
Normal file
0
.pmdk.metadata
Normal file
@ -21,9 +21,9 @@ data:
|
||||
rpms:
|
||||
pmdk:
|
||||
rationale: main pmdk library
|
||||
ref: stream-pmdk-1_fileformat_v6-rhel-8.10.0
|
||||
ref: stream-rhel-8.8.0
|
||||
buildorder: 0
|
||||
libpmemobj-cpp:
|
||||
rationale: depends on (recent version of) pmdk
|
||||
ref: stream-pmdk-1_fileformat_v6-rhel-8.10.0
|
||||
ref: stream-rhel-8.8.0
|
||||
buildorder: 10
|
@ -1,6 +0,0 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.redhat-module.tier0.functional}
|
@ -1,15 +0,0 @@
|
||||
#include <libpmem.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
int
|
||||
main(int argc, char **argv)
|
||||
{
|
||||
void *addr;
|
||||
|
||||
addr = pmem_map_file(argv[1], getpagesize(),
|
||||
PMEM_FILE_CREATE, S_IWUSR|S_IRUSR, NULL, NULL);
|
||||
if (addr)
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
gcc -o is_pmem is_pmem.c -lpmem || exit 1
|
||||
RET=$(./is_pmem ./testfile)
|
||||
unlink testfile
|
||||
exit $RET
|
@ -1,12 +0,0 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
required_packages:
|
||||
- libpmem-devel
|
||||
- gcc
|
||||
tests:
|
||||
- simple:
|
||||
dir: .
|
||||
run: ./run_test.sh
|
Loading…
Reference in New Issue
Block a user