Skip to content

Commit f317153

Browse files
authored
Merge pull request #5959 from larsewi/lastseen-3.21.x
ENT-7541: Added skip for run_lastseen_threaded_load.sh test on HP/UX (3.21.x)
2 parents b548c69 + 2cc6a1c commit f317153

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

cf-agent/verify_files_utils.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
included file COSL.txt.
2323
*/
2424

25+
#include <platform.h>
2526
#include <stddef.h>
2627
#include <sys/types.h>
2728
#include <verify_files_utils.h>

libpromises/evalfunction.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
included file COSL.txt.
2323
*/
2424

25+
#include <platform.h>
2526
#include <evalfunction.h>
2627

2728
#include <policy_server.h>

libpromises/storage_tools.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
included file COSL.txt.
2323
*/
2424

25+
#include <platform.h>
26+
2527
#include <cf3.defs.h>
2628

2729
#ifdef HAVE_SYS_STATFS_H

tests/load/run_lastseen_threaded_load.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/bin/sh
22

3-
if [ "x$label" = "xPACKAGES_x86_64_solaris_10" ] ;
4-
then
5-
echo "Skipping lastseen_threaded_load on $label"
3+
for skip_label in PACKAGES_x86_64_solaris_10 PACKAGES_ia64_hpux_11.23; do
4+
if [ "$label" = "$skip_label" ]; then
5+
echo "Skipping $0 on label $skip_label"
66
exit 0;
7-
fi
7+
fi
8+
done
89

910
echo "Starting run_lastseen_threaded_load.sh test"
1011

0 commit comments

Comments
 (0)