Compare commits

...

No commits in common. "c8s" and "c9s" have entirely different histories.
c8s ... c9s

7 changed files with 6 additions and 47 deletions

4
.gitignore vendored
View File

@ -1,2 +1,2 @@
/pcm-202107.tar.gz
/pcm-202211.tar.gz
/*.tar.*
0*.patch

1
.pcm.metadata Normal file
View File

@ -0,0 +1 @@
d22461c61423ffa55d8c8a69be311bf2bb0a00e0 pcm-202211.tar.gz

View File

@ -2,10 +2,8 @@
product_versions:
- rhel-8
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
rules: []

View File

@ -1,6 +1,6 @@
Name: pcm
Version: 202211
Release: 0%{?dist}
Release: 3%{?dist}
Summary: Intel(r) Performance Counter Monitor
License: BSD
Url: https://github.com/intel/pcm
@ -58,9 +58,6 @@ rm -rf %{buildroot}/usr/share/doc/PCM/*.txt
%{_datadir}/%{name}/
%changelog
* Wed Jan 11 2023 Prarit Bhargava <prarit@redhat.com> 202211-0
- Import into RHEL8
* Thu Nov 24 2022 Roman Dementiev <roman.dementiev@intel.com> 0.1-10
- Update to new upstream repository location and the name
- Update to version 202211

View File

@ -1,12 +0,0 @@
#!/bin/bash
# fail the whole test set if any of the command pipelines fail
set -ex
# when running this in 1minutetip the PATH must be specified to execute
# in the local directory.
echo "Setting path to local directory"
PATH=$PATH:$(pwd)
# simple version test
version.sh

View File

@ -1,9 +0,0 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- simple:
dir: . # switch to subfolder. This parameter is REQUIRED, use `dir: .` for current folder
run: ./run_tests.sh # this is your test command, its exit code is the outcome of the test

View File

@ -1,16 +0,0 @@
#!/bin/bash
#
# Thermald is a systemd unit file that requires specific hardware and
# firmware. As such it is difficult to test in an automated fashion.
# fail the whole test if any of the command pipelines below fails
set -ex
rpmversion=$(rpm -q --queryformat '%{VERSION}' pcm)
if [ "$rpmversion" == "package pcm is not installed" ]; then
echo "pcm package not installed"
exit 1
fi
# if we get here, it's OK