Compare commits
No commits in common. "c8" and "c8s" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/synce4l-9564b5.tar.gz
|
||||
/synce4l-9564b5.tar.gz
|
||||
|
@ -1 +0,0 @@
|
||||
0ac4868f7b3121b7f8cb58ef5560c4b807a36edd SOURCES/synce4l-9564b5.tar.gz
|
6
gating.yaml
Normal file
6
gating.yaml
Normal file
@ -0,0 +1,6 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-8
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (synce4l-9564b5.tar.gz) = 2661d920b4dc2e02fd1bc09d8b6d20d13aa15aa4841582ea6bad47f77716cdf8c6f6876eae6efe1e68d89eca58bf8c834241ced8c71820176204347ca07dde31
|
30
tests/defconfig/runtest.sh
Executable file
30
tests/defconfig/runtest.sh
Executable file
@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
# Test if synce4l can parse default configuration
|
||||
|
||||
set -ex
|
||||
|
||||
# Find a nonexistent network device
|
||||
i=1
|
||||
while ip link show eth$i &> /dev/null; do
|
||||
i=$((i + 1))
|
||||
done
|
||||
eth=eth$i
|
||||
|
||||
tmpconf=$(mktemp)
|
||||
|
||||
sed "s/^\[eth0\]/\[eth$i\]/" < /etc/synce4l.conf > "$tmpconf"
|
||||
|
||||
out=$(synce4l -m -q -l 7 -f "$tmpconf" 2>&1 || :)
|
||||
|
||||
echo "$out" | grep -q "config item synce1"
|
||||
echo "$out" | grep -q "ioctl SIOCGIFHWADDR failed: No such device"
|
||||
|
||||
echo "unknownoption 1" >> "$tmpconf"
|
||||
|
||||
out=$(synce4l -m -q -l 7 -f "$tmpconf" 2>&1 || :)
|
||||
|
||||
echo "$out" | grep -q "failed to parse configuration file"
|
||||
|
||||
rm "$tmpconf"
|
||||
|
||||
exit 0
|
9
tests/tests.yml
Normal file
9
tests/tests.yml
Normal file
@ -0,0 +1,9 @@
|
||||
- hosts: localhost
|
||||
roles:
|
||||
- role: standard-test-basic
|
||||
tags:
|
||||
- classic
|
||||
tests:
|
||||
- defconfig
|
||||
required_packages:
|
||||
- iproute
|
Loading…
Reference in New Issue
Block a user