Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cf-agent/verify_files_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
included file COSL.txt.
*/

#include <platform.h>
#include <stddef.h>
#include <sys/types.h>
#include <verify_files_utils.h>
Expand Down
1 change: 1 addition & 0 deletions libpromises/evalfunction.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
included file COSL.txt.
*/

#include <platform.h>
#include <evalfunction.h>

#include <policy_server.h>
Expand Down
2 changes: 2 additions & 0 deletions libpromises/storage_tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
included file COSL.txt.
*/

#include <platform.h>

#include <cf3.defs.h>

#ifdef HAVE_SYS_STATFS_H
Expand Down
9 changes: 5 additions & 4 deletions tests/load/run_lastseen_threaded_load.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/bin/sh

if [ "x$label" = "xPACKAGES_x86_64_solaris_10" ] ;
then
echo "Skipping lastseen_threaded_load on $label"
for skip_label in PACKAGES_x86_64_solaris_10 PACKAGES_ia64_hpux_11.23; do
if [ "$label" = "$skip_label" ]; then
echo "Skipping $0 on label $skip_label"
exit 0;
fi
fi
done

echo "Starting run_lastseen_threaded_load.sh test"

Expand Down
Loading