-
Notifications
You must be signed in to change notification settings - Fork 5
/
run_plfs_regression.sh
executable file
·1151 lines (1090 loc) · 42.2 KB
/
run_plfs_regression.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash -l
#
###################################################################################
# Copyright (c) 2009, Los Alamos National Security, LLC All rights reserved.
# Copyright 2009. Los Alamos National Security, LLC. This software was produced
# under U.S. Government contract DE-AC52-06NA25396 for Los Alamos National
# Laboratory (LANL), which is operated by Los Alamos National Security, LLC for
# the U.S. Department of Energy. The U.S. Government has rights to use,
# reproduce, and distribute this software. NEITHER THE GOVERNMENT NOR LOS
# ALAMOS NATIONAL SECURITY, LLC MAKES ANY WARRANTY, EXPRESS OR IMPLIED, OR
# ASSUMES ANY LIABILITY FOR THE USE OF THIS SOFTWARE. If software is
# modified to produce derivative works, such modified software should be
# clearly marked, so as not to confuse it with the version available from
# LANL.
#
# Additionally, redistribution and use in source and binary forms, with or
# without modification, are permitted provided that the following conditions are
# met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# Neither the name of Los Alamos National Security, LLC, Los Alamos National
# Laboratory, LANL, the U.S. Government, nor the names of its contributors may be
# used to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY LOS ALAMOS NATIONAL SECURITY, LLC AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL LOS ALAMOS NATIONAL SECURITY, LLC OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
# OF SUCH DAMAGE.
###################################################################################
#
#
# This is the main script that starts a plfs regression run.
# It will check out or copy all needed pieces of code and then build the
# appropriate ones. It will call on a script to submit jobs if all the
# needed coded compiled. It will then pass control over to the script
# that will monitor running tests. Only if there is a problem with getting
# source code, building it, or passing control to the next script will this
# script send a report.
# Source the configuration file. It must be in the same directory as this
# executable
exec_dir=`dirname $0`
if [ -e "${exec_dir}/config" ]; then
source ${exec_dir}/config
else
echo "run_plfs_regression.sh error: config file not present. Exiting." 1>&2
exit 1
fi
# Since the regression will be run on multiple machines, we'll need
# to know where this particular instance was run.
host=$HOSTNAME
# Without this, there is a spurious "TERM environment variable not
# set" message when cron runs this script.
export TERM=dumb
function print_usage {
echo "$0 usage:"
echo "$0 [OPTION ...]"
echo ""
echo "OPTIONS"
echo -e "\t--plfssrc=DIR"
echo -e "\t\tEquivalent to setting plfs_source_directory in the config file."
echo -e "\t--openmpitar=FILE"
echo -e "\t\tEquivalent to setting open_mpi_tarball in the config file."
echo -e "\t--fstestsrc=DIR"
echo -e "\t\tEquivalent to setting fs_test_source in the config file."
echo -e "\t--utilitiessrc=DIR"
echo -e "\t\tEquivalent to setting utilities_source in the config file."
echo -e "\t--exprmgmtsrc=DIR"
echo -e "\t\tEquivalent to setting experiment_management_source in the config file."
echo -e "\t--testtypes=LIST"
echo -e "\t\tEquivalent to setting test_types in the config file."
echo -e "\t--nodelete"
echo -e "\t\tEquivalent to setting delete_passing_test_output to False in the config file."
echo -e "\t--nobuild"
echo -e "\t\tEquivalent to setting do_building to False in the config file."
echo -e "\t--notests"
echo -e "\t\tEquivalent to setting do_tests to False in the config file."
echo -e "\t--noemail"
echo -e "\t\tEquivalent to setting send_email to False in the config file."
echo -e "\t--noprompt"
echo -e "\t\tEquivalent to setting prompt to False in the config file."
echo -e "\t-h,--help"
echo -e "\t\tDisplay this message and exit"
}
# Function that will format an email message detailing a summary of
# tasks done and the tasks' status. Will put that summary in a file
# defined by the email_message variable in plfsregrc.
function format_email {
echo "Regression date:" `date +%F` > $email_message
echo "Summary of regression steps:" >> $email_message
echo "" >> $email_message
# Check plfs
echo "PLFS status....$plfs_ok: $plfs_stat" >> $email_message
if [ "$plfs_ok" == "FAIL" ]; then
echo "Log file located at $plfs_build_log" >> $email_message
fi
# Check mpi
echo "MPI status...$mpi_ok: $mpi_stat" >> $email_message
if [ "$mpi_ok" == "FAIL" ]; then
echo "Log file located at $mpi_build_log" >> $email_message
fi
# Check fs_test
echo "fs_test status....$fs_test_ok: $fs_test_stat" >> $email_message
if [ "$fs_test_ok" == "FAIL" ]; then
echo "Log file located at $fs_test_build_log" >> $email_message
fi
# Check getting experiment_management
echo "experiment_management status...$expr_mgmt_ok: $expr_mgmt_stat" >> $email_message
if [ "$expr_mgmt_ok" == 'FAIL' ]; then
echo "Log file located at $expr_mgmt_get_log" >> $email_message
fi
# Check rc config files
echo "rc config files...$config_file_ok: $config_file_stat" >> $email_message
if [ "$config_file_ok" == "FAIL" ]; then
echo "Log file located at $config_file_log" >> $email_message
fi
echo "" >> $email_message
# Check if submitting tests worked
if [ "$runtests" == "True" ]; then
echo "Submitting tests...$submit_test_stat" >> $email_message
if [ "$submit_test_stat" != 'PASS' ]; then
echo "Please see $submit_tests_log." >> $email_message
fi
else
echo "--notests used. No jobs submitted." >> $email_message
fi
}
# Function that can be used to send an email message about a regression run.
# Pulls many of the needed variables from plfsregrc.
#
# Input:
# - String to describe if the regression run passed or failed. This will be
# used in the subject line of the email message so that it is easy to determine
# if the regression run failed.
function send_email {
subj="PLFS regression on $host: $1"
/bin/mail -s "$subj" $addr < $email_message
rm -f $email_message
}
# Function to exit when not passing control to check_tests.py. Removes the lock file
# and calls send_email if need be.
#
# Usage:
# script_exit_no_pass <status> <return value>
#
# <status> is FAILED or PASSED that will be passed to send_email
# <return value> is what will be passed to the system's exit call.
function script_exit_no_pass {
if [ $doemail == "True" ]; then
send_email $1
fi
rm -rf $id_file
rm -f $run_plfs_regression_lock
exit $2
}
# Function to exit from this script. Based on the single command line parameter
# passed to it, it will exit or pass control to check_tests.py.
#
# Input is a single integer:
# If $1 is a 0, everything went fine so pass control to check_tests.py before exiting.
# If $1 is something else, there was a problem and the regression run should stop
# without passing control to check_tests.py.
function script_exit {
if [ $doemail == "True" ]; then
format_email
fi
if [ $1 == "0" ]; then
if [ $runtests == "True" ]; then
echo "Passing control to check_tests.py and exiting."
echo "Please see $check_tests_log."
if [ $doemail == "True" ]; then
${basedir}/check_tests.py --dictfile=$dict_file --idfile=$id_file \
--emailaddr=$addr --emailmsginc=$email_message \
--logfile=$check_tests_log --basedir=$basedir $nodelete &
else
${basedir}/check_tests.py --dictfile=$dict_file --idfile=$id_file \
--logfile=$check_tests_log --basedir=$basedir $nodelete --noemail &
fi
else
echo "--notests used...control will not be passed to check_tests.py"
script_exit_no_pass PASSED $1
fi
else
echo "Regression run FAILED"
echo "Since no tests were submitted, control will not be passed to"
echo "check_tests.py."
script_exit_no_pass FAILED $1
fi
# Regular exit. Remove this script's lock file and exit.
rm -f $run_plfs_regression_lock
exit $1
}
function check_env_vars {
env_var_problem="False"
if [ -z "$MPI_CC" ]; then
echo "MPI_CC env variable not set"
env_var_problem="True"
fi
if [ -z "$MY_MPI_HOST" ]; then
echo "MY_MPI_HOST env variable not set"
env_var_problem="True"
fi
if [ "$env_var_problem" == "True" ]; then
return 1
else
return 0
fi
}
# Default values for control variables.
plfs_src_from="None"
plfs_bin_dir="None"
plfs_sbin_dir="None"
plfs_lib_dir="None"
plfs_inc_dir="None"
plfs_src_dir="None"
openmpi_tarball="None"
mpi_bin_dir="None"
mpi_lib_dir="None"
mpi_inc_dir="None"
fs_test_src_from="None"
fs_test_loc="None"
expr_mgmt_src_from="None"
expr_mgmt_loc="None"
testtypes="1,2"
nodelete=""
build="True"
runtests="True"
doemail="True"
prompt_user="True"
# The config file has already been parsed, so check command line args.
for i in $*
do
case $i in
--plfssrc=*)
plfs_source_directory=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
;;
--fstestsrc=*)
fs_test_source_directory=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
;;
--exprmgmtsrc=*)
experiment_management_source=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
;;
--openmpitar=*)
open_mpi_tarball=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
;;
--testtypes=*)
test_types=`echo $i | sed 's/[-a-zA-Z0-9]*=//'`
;;
--nodelete)
delete_passing_test_output="False"
;;
"-h" | "--help")
print_usage
exit 0
;;
--nobuild)
do_building="False"
;;
--notests)
do_tests="False"
;;
--noemail)
send_email="False"
;;
--noprompt)
prompt="False"
;;
*)
# Unknown option
echo "$0: Unknown command line option $i"
print_usage
exit 1
;;
esac
done
# Check if any parameters where set in the config file
if [ -n "$plfs_source_directory" ]; then
if [ -d "$plfs_source_directory" ]; then
plfs_src_from="$plfs_source_directory"
else
echo "$0: $plfs_source_directory is not a valid directory."
exit 1
fi
elif [ -n "$plfs_bin_directory" ] && [ -n "$plfs_sbin_directory" ] && [ -n "$plfs_lib_directory" ] && [ -n "$plfs_include_directory" ] && [ -n "$plfs_src_directory" ]; then
plfs_bin_dir="$plfs_bin_directory"
if [ ! -d "$plfs_bin_directory" ]; then
echo "$0: $plfs_bin_dir is not a valid directory."
exit 1
fi
plfs_sbin_dir="$plfs_sbin_directory"
if [ ! -d "$plfs_sbin_directory" ]; then
echo "$0: $plfs_sbin_dir is not a valid directory."
exit 1
fi
plfs_lib_dir="$plfs_lib_directory"
if [ ! -d "$plfs_lib_dir" ]; then
echo "$0: $plfs_lib_dir is not a valid directory."
exit 1
fi
plfs_inc_dir="$plfs_include_directory"
if [ ! -d "$plfs_inc_dir" ]; then
echo "$0: $plfs_inc_dir is not a valid directory."
exit 1
fi
plfs_src_dir="$plfs_src_directory"
if [ ! -d "$plfs_src_dir" ]; then
echo "$0: $plfs_src_dir is not a valid directory."
exit 1
fi
else
echo "$0: either plfs_source_directory or plfs_bin_directory, plfs_sbin_directory, plfs_lib_directory, plfs_include_directory and plfs_src_directory must be specified. Please see the config file."
exit 1
fi
if [ -n "$open_mpi_tarball" ]; then
if [ -f "$open_mpi_tarball" ]; then
openmpi_tarball="$open_mpi_tarball"
# Check the platform file
if [ -f "$basedir/openmpi_platform_file" ]; then
ompi_platform_file=$basedir/openmpi_platform_file
elif [ -f "$basedir/openmpi_platform_file.sample" ]; then
ompi_platform_file=$basedir/openmpi_platform_file.sample
else
echo "$0: neither openmpi_platform_file or openmpi_platform_file.sample are present for correctly building openmpi."
exit 1
fi
else
echo "$0: $open_mpi_tarball is not a valid file."
exit 1
fi
elif [ -n "$mpi_bin_directory" ] && [ -n "$mpi_lib_directory" ] && [ -n "$mpi_include_directory" ]; then
mpi_bin_dir="$mpi_bin_directory"
if [ ! -d "$mpi_bin_dir" ]; then
echo "$0: $mpi_bin_dir is not a valid directory."
exit 1
fi
mpi_lib_dir="$mpi_lib_directory"
if [ ! -d "$mpi_lib_dir" ]; then
echo "$0: $mpi_lib_dir is not a valid directory."
exit 1
fi
mpi_inc_dir="$mpi_include_directory"
if [ ! -d "$mpi_inc_dir" ]; then
echo "$0: $mpi_inc_dir is not a valid directory."
exit 1
fi
else
echo "$0: either open_mpi_tarball or mpi_bin_directory, mpi_lib_directory and mpi_include_directory must be specified. Plese see the config file."
exit 1
fi
if [ -n "$fs_test_source_directory" ]; then
if [ -d "$fs_test_source_directory" ]; then
fs_test_src_from="$fs_test_source_directory"
else
echo "$0: $fs_test_source is not a valid directory"
exit 1
fi
elif [ -n "$fs_test_location" ]; then
if [ -e "$fs_test_location" ]; then
fs_test_loc=$fs_test_location
else
echo "$0: $fs_test_location is not a valid executable."
exit 1
fi
else
echo "$0: either fs_test_source_directory or fs_test_location must be specified. Please see the config file."
exit 1
fi
if [ -n "$experiment_management_source" ]; then
if [ -d "$experiment_management_source" ]; then
expr_mgmt_src_from="$experiment_management_source"
else
echo "$0: $experiment_management_source is not a valid directory"
exit 1
fi
elif [ -n "$experiment_management_directory" ]; then
if [ -d "$experiment_management_directory" ]; then
expr_mgmt_loc=$experiment_management_directory
else
echo "$0: $experiment_management_directory is not a valid directory."
exit 1
fi
else
echo "$0: either experiment_management_source or experiment_management_directory must be specified. Please see the config file."
exit 1
fi
if [ -n "$test_types" ]; then
testtypes="$test_types"
fi
if [ -n "$delete_passing_test_output" ]; then
if [ "$delete_passing_test_output" == "True" ]; then
nodelete=""
elif [ "$delete_passing_test_output" == "False" ]; then
nodelete="--nodelete"
else
echo "$0: Invalid option for delete_passing_test_output. Must be True or False. Please see the config file."
exit 1
fi
fi
if [ -n "$do_building" ]; then
if [ "$do_building" == "True" ]; then
build="True"
elif [ "$do_building" == "False" ]; then
build="False"
else
echo "$0: Invalid option for do_building. Must be True or False. Please see the config file."
exit 1
fi
fi
if [ -n "$do_tests" ]; then
if [ "$do_tests" == "True" ]; then
runtests="True"
elif [ "$do_tests" == "False" ]; then
runtests="False"
else
echo "$0: Invalid option for do_tests. Must be True or False. Please see the config file."
exit 1
fi
fi
if [ -n "$send_email" ]; then
if [ "$send_email" == "True" ]; then
doemail="True"
elif [ "$send_email" == "False" ]; then
doemail="False"
else
echo "$0: Invalid option for send_email. Must be True or False. Please see the config file."
exit 1
fi
fi
if [ -n "$prompt" ]; then
if [ "$prompt" == "True" ]; then
prompt_user="True"
elif [ "$prompt" == "False" ]; then
prompt_user="False"
else
echo "$0: Invalid option for prompt. Must be True or False. Please see the config file."
exit 1
fi
fi
# If we're here, then we need to attempt to do a regression run of some sort.
# Check that this instance of the regression can and/or should run
if [ -e "${basedir}/DO_NOT_RUN_REGRESSION" ]; then
echo "DO_NOT_RUN_REGRESSION file present. This instance of a" 1>&2
echo "regression run will now exit." 1>&2
exit 0
fi
if [ -e "${id_file}" ]; then
echo "Previous regression instance still running. Exiting." 1>&2
exit 0
fi
check_env_vars
if [[ $? != 0 ]]; then
exit 1
fi
# Print some info about where stuff is coming from and what will be attempted.
echo "Info for this regression run:"
echo ""
if [ "$plfs_src_from" == "None" ]; then
echo "Using PLFS from the following locations:"
echo "PLFS user binaries: $plfs_bin_dir"
echo "PLFS admin binaries: $plfs_sbin_dir"
echo "PLFS libraries: $plfs_lib_dir"
echo "PLFS headers: $plfs_inc_dir"
echo "PLFS source: $plfs_src_dir"
else
echo "PLFS source: $plfs_src_from"
fi
if [ "$openmpi_tarball" == "None" ]; then
echo "Using MPI from the following locations:"
echo "MPI binaries: $mpi_bin_dir"
echo "MPI libraries: $mpi_lib_dir"
echo "MPI headers: $mpi_inc_dir"
else
echo "Open MPI source: $openmpi_tarball"
echo "Open MPI platform file: $ompi_platform_file"
fi
if [ "$fs_test_src_from" == "None" ]; then
echo "fs_test binary: $fs_test_loc"
else
echo "fs_test source: $fs_test_src_from"
fi
if [ "$expr_mgmt_src_from" == "None" ]; then
echo "Experiment_management location: $expr_mgmt_loc"
else
echo "experiment_management source: $expr_mgmt_src_from"
fi
echo "MY_MPI_HOST: $MY_MPI_HOST"
echo "MPI_CC: $MPI_CC"
echo "Test types: $testtypes"
echo "Building: $build"
echo "Sending email: $doemail"
echo "Running and checking tests: $runtests"
if [ "$nodelete" == "" ]; then
echo "Delete output of passed tests: True"
else
echo "Delete output of passed tests: False"
fi
echo ""
if [ "$prompt_user" == "True" ]; then
read -sn 1 -p "Ready to begin regression run. Press any key to continue..."; echo
fi
# Create the lock file id_file
touch $id_file
# Create a lock file for just run_plfs_regression
touch $run_plfs_regression_lock
# Variables to keep track of what gets done.
plfs_stat="Not checked"
plfs_ok="PASS"
mpi_stat="Not checked"
mpi_ok="PASS"
fs_test_stat="Not checked"
fs_test_ok="PASS"
expr_mgmt_stat="Not checked"
expr_mgmt_ok="PASS"
submit_test_stat="Not done"
config_file_stat="Not checked"
config_file_ok="PASS"
# Log files
log_dir=$basedir/logs
# Make the directory if need be.
if [ ! -d "$log_dir" ]; then
if [ -e "$log_dir" ]; then
echo "Error: logs exists but not as a directory. Exiting." 1>&2
script_exit 1
fi
mkdir $log_dir
fi
# make sure the source directory exists
if [ ! -d "$srcdir" ]; then
if [ -e "$srcdir" ]; then
echo "Error: $srcdir exists but not as a directory. Exiting." 1>&2
script_exit 1
fi
mkdir $srcdir
if [[ $? != 0 ]]; then
echo "Error: unable to create $srcdir. Exiting." 1>&2
script_exit 1
fi
fi
# make sure the install directory exists
if [ ! -d "$instdir" ]; then
if [ -e "$instdir" ]; then
echo "Error: $instdir exists but not as a directory. Exiting." 1>&2
script_exit 1
fi
mkdir $instdir
if [[ $? != 0 ]]; then
echo "Error: unable to create $instdir. Exiting." 1>&2
script_exit 1
fi
fi
# Specify all the different log files.
plfs_build_log=${log_dir}/plfs_build.log
mpi_build_log=${log_dir}/mpi_build.log
fs_test_build_log=${log_dir}/fs_test_build.log
expr_mgmt_get_log=${log_dir}/expr_mgmt_get.log
submit_tests_log=${log_dir}/submit_tests.log
config_file_log=${log_dir}/config_file.log
# Get and build what we need
if [ "$build" == "True" ]; then
# PLFS
echo "Checking PLFS. Please see $plfs_build_log."
if [ "$plfs_src_from" == "None" ]; then
# Using an already defined plfs installation. plfs_bin_dir,
# plfs_lib_dir, plfs_inc_dir and plfs_src_dir will already be defined.
echo "Linking plfs..." | tee $plfs_build_log
# Check for a user binary
if [ -e "$plfs_bin_dir/plfs_check_config" ]; then
echo "Found $plfs_bin_dir/plfs_check_config" >> $plfs_build_log
else
echo "$plfs_bin_dir/plfs_check_config not found. It does not appear that $plfs_bin_dir contains plfs binaries." >> $plfs_build_log
plfs_stat="plfs binaries not found"
plfs_ok="FAIL"
fi
# Check for a admin binary
if [ -e "$plfs_sbin_dir/plfs" ]; then
echo "Found $plfs_sbin_dir/plfs" >> $plfs_build_log
else
echo "$plfs_sbin_dir/plfs. It does not appear that $plfs_sbin_dir contains plfs admin binaries." >> $plfs_build_log
plfs_stat="plfs binaries not found"
plfs_ok="FAIL"
fi
# Check for libplfs
ls $plfs_lib_dir | grep -q libplfs
if [[ $? == 0 ]]; then
# Found a libplfs
echo "Found a libplfs in $plfs_lib_dir" >> $plfs_build_log
else
echo "libplfs* was not found in $plfs_lib_dir. It does not appear that $plfs_lib_dir contains plfs libraries." >> $plfs_build_log
plfs_stat="plfs libraries not found"
plfs_ok="FAIL"
fi
# Check for plfs headers
if [ -e "$plfs_inc_dir/plfs.h" ]; then
echo "Found $plfs_inc_dir/plfs.h" >> $plfs_build_log
else
echo "$plfs_inc_dir does not contain a plfs.h. It does not appear that $plfs_inc_dir contains plfs headers." >> $plfs_build_log
plfs_stat="plfs headers not found"
plfs_ok="FAIL"
fi
# Check for plfs source
if [ -e "$plfs_src_dir/mpi_adio/scripts/make_ad_plfs_patch" ]; then
echo "Found plfs source in $plfs_src_dir" >> $plfs_build_log
else
echo "$plfs_src_dir does not contain mpi_adio/scripts/make_ad_plfs_patch. It does not appear that $plfs_src_dir contains plfs source files." >> $plfs_build_log
plfs_stat="plfs source not found"
plfs_ok="FAIL"
fi
if [ "$plfs_ok" == "PASS" ]; then
# If we're here, plfs has been successfully found. Link it in to
# the regression suite so tests can know where to always find it.
plfs_stat="plfs successfully found"
if [ -d "${instdir}/plfs" ]; then
rm -rf "${instdir}/plfs" >> $plfs_build_log 2>&1
if [ -d "${instdir}/plfs" ]; then
plfs_stat="unable to remove old plfs installation"
plfs_ok="FAIL"
fi
fi
if [ -d "${srcdir}/plfs" ]; then
rm -rf "${srcdir}/plfs" >> $plfs_build_log 2>&1
if [ -d "${srcdir}/plfs" ]; then
plfs_stat="unable to remove old plfs source directory"
plfs_ok="FAIL"
fi
fi
if [ "$plfs_ok" == "PASS" ]; then
mkdir ${instdir}/plfs
if [[ $? == 0 ]]; then
echo "Linking..." >> $plfs_build_log
ln -s $plfs_bin_dir ${instdir}/plfs/bin >> $plfs_build_log 2>&1 && \
ln -s $plfs_sbin_dir ${instdir}/plfs/sbin >> $plfs_build_log 2>&1 && \
ln -s $plfs_lib_dir ${instdir}/plfs/lib >> $plfs_build_log 2>&1 && \
ln -s $plfs_inc_dir ${instdir}/plfs/include >> $plfs_build_log 2>&1
if [[ $? == 0 ]]; then
ln -s $plfs_src_dir ${srcdir}/plfs >> $plfs_build_log 2>&1
if [[ $? == 0 ]]; then
plfs_ok="PASS"
else
plfs_ok="FAIL"
fi
else
plfs_ok="FAIL"
fi
if [ "$plfs_ok" == "PASS" ]; then
echo "Successfully linked" >> $plfs_build_log
plfs_stat="successfully linked"
else
echo "Unable to link" >> $plfs_build_log
plfs_stat="unable to link"
fi
else
plfs_stat="unable to create new plfs installation"
plfs_ok="FAIL"
fi
fi
fi
else
echo "Building plfs..." | tee $plfs_build_log
# Copy the src from plfs_src_from
${basedir}/src_cp.sh $plfs_src_from ${srcdir}/plfs >> $plfs_build_log 2>&1
# grep -q processor /proc/cpuinfo
if [[ $? == 0 ]]; then
# Build the plfs source
${basedir}/plfs_build.sh ${srcdir}/plfs $instdir/plfs >> $plfs_build_log 2>&1
# grep -q processor /proc/cpuinfo
# Find out if the build was successful
if [[ $? == 0 ]]; then
plfs_stat="Successfully built and installed"
plfs_ok="PASS"
plfs_bin_dir="${instdir}/plfs/bin"
plfs_lib_dir="${instdir}/plfs/lib"
plfs_inc_dir="${instdir}/plfs/include"
else
plfs_stat="Building failed"
plfs_ok="FAIL"
fi
else
plfs_stat="Copying source failed"
plfs_ok="FAIL"
fi
fi
# final sanity check on the needed plfs directories
if [ ! -d "${instdir}/plfs/bin" ]; then
echo "ERROR: ${instdir}/plfs/bin is not avaliable.." 2>&1
plfs_ok="FAIL"
fi
if [ ! -d "${instdir}/plfs/sbin" ]; then
echo "ERROR: ${instdir}/plfs/sbin is not avaliable.." 2>&1
plfs_ok="FAIL"
fi
if [ ! -d "${instdir}/plfs/lib" ]; then
echo "ERROR: ${instdir}/plfs/lib is not avaliable.." 2>&1
plfs_ok="FAIL"
fi
if [ ! -d "${instdir}/plfs/include" ]; then
echo "ERROR: ${instdir}/plfs/include is not avaliable.." 2>&1
plfs_ok="FAIL"
fi
echo $plfs_stat
if [ "$plfs_ok" == "FAIL" ]; then
script_exit 1
fi
#MPI
echo "Checking mpi. Please see $mpi_build_log."
if [ "$openmpi_tarball" == "None" ]; then
# Use an already existing version of mpi. mpi_bin_dir, mpi_lib_dir and
# mpi_inc_dir will already be defined. Check to make sure all is well.
echo "Linking mpi..." | tee $mpi_build_log
# Check for a binary
if [ -e "$mpi_bin_dir/$MPI_CC" ]; then
echo "Found $mpi_bin_dir/$MPI_CC" >> $mpi_build_log
else
echo "$mpi_bin_dir/$MPI_CC not found. It does not appear that $mpi_bin_dir contains mpi binaries." >> $mpi_build_log
mpi_stat="mpi binaries not found"
mpi_ok="FAIL"
fi
# Check for libmpi
ls $mpi_lib_dir | grep -q libmpi
if [[ $? != 0 ]]; then
echo "libmpi* was not found in $mpi_lib_dir. It does not appear that $mpi_lib_dir contains mpi libraries." >> $mpi_build_log
mpi_stat="mpi libraries not found"
mpi_ok="FAIL"
fi
# Check for mpi headers
if [ -e "$mpi_inc_dir/mpi.h" ]; then
echo "Found $mpi_inc_dir/mpi.h" >> $mpi_build_log
else
echo "$mpi_inc_dir does not contain a mpi.h. It does not appear that $mpi_inc_dir contains mpi headers." >> $mpi_build_log
mpi_stat="mpi headers not found"
mpi_ok="FAIL"
fi
if [ "$mpi_ok" == "PASS" ]; then
# If we're here, mpi has been successfully found. Link it in to
# the regression suite so tests can know where to always find it.
mpi_stat="mpi successfully found"
if [ -d "${instdir}/mpi" ]; then
rm -rf "${instdir}/mpi" >> $mpi_build_log 2>&1
if [ -d "${instdir}/mpi" ]; then
mpi_stat="unable to remove old mpi installation"
mpi_ok="FAIL"
fi
fi
if [ ! -d "${instdir}/mpi" ]; then
mkdir ${instdir}/mpi >> $mpi_build_log 2>&1
if [[ $? == 0 ]]; then
echo "Linking..." >> $mpi_build_log
ln -s $mpi_bin_dir ${instdir}/mpi/bin >> $mpi_build_log 2>&1 && \
ln -s $mpi_lib_dir ${instdir}/mpi/lib >> $mpi_build_log 2>&1 && \
ln -s $mpi_inc_dir ${instdir}/mpi/include >> $mpi_build_log 2>&1
if [[ $? == 0 ]]; then
echo "Successfully linked" >> $mpi_build_log
mpi_stat="successfully linked"
mpi_ok="PASS"
else
echo "Unable to link" >> $mpi_build_log
mpi_stat="unable to link"
mpi_ok="FAIL"
fi
else
mpi_stat="unable to create directory"
mpi_ok="FAIL"
fi
fi
fi
else
# Build openmpi.
echo "Building and installing openmpi." | tee $mpi_build_log
# Compile openmpi from a tarball
${basedir}/openmpi_build.sh $openmpi_tarball $srcdir $instdir/mpi \
${srcdir}/plfs ${ompi_platform_file} \
>> $mpi_build_log 2>&1
if [[ $? == 0 ]]; then
mpi_stat="Successfully built and installed"
mpi_ok="PASS"
mpi_bin_dir="${instdir}/mpi/bin"
mpi_lib_dir="${instdir}/mpi/lib"
mpi_inc_dir="${instdir}/mpi/include"
else
mpi_stat='Failed to build and install'
mpi_ok="FAIL"
fi
fi
echo $mpi_stat
# final sanity check on the needed mpi directories
if [ ! -d "${instdir}/mpi/bin" ]; then
echo "ERROR: ${instdir}/mpi/bin is not avaliable." 2>&1
mpi_ok="FAIL"
fi
if [ ! -d "${instdir}/mpi/lib" ]; then
echo "ERROR: ${instdir}/mpi/lib is not avaliable." 2>&1
mpi_ok="FAIL"
fi
if [ ! -d "${instdir}/mpi/include" ]; then
echo "ERROR: ${instdir}/mpi/include is not avaliable." 2>&1
mpi_ok="FAIL"
fi
if [ "$mpi_ok" == "FAIL" ]; then
script_exit 1
fi
# set up the environment to use the regression suite's binaries and
# libraries
source ${basedir}/tests/utils/rs_env_init.sh >> /dev/null
# experiment_management
echo "Checking experiment_management. Please see $expr_mgmt_get_log."
expr_dir="${instdir}/experiment_management"
# Remove the old inst/experiment_management directory if needed
if [ -d "$expr_dir" ]; then
echo "Removing $expr_dir" > $expr_mgmt_get_log 2>&1
rm -rf $expr_dir >> $expr_mgmt_get_log 2>&1
if [ -d "$expr_dir" ]; then
echo "Error: Unable to remove $expr_dir" >> $expr_mgmt_get_log 2>&1
expr_mgmt_stat="unable to remove old experiment_management installation"
expr_mgmt_ok="FAIL"
fi
fi
if [ "$expr_mgmt_ok" == "PASS" ]; then
if [ "$expr_mgmt_src_from" == "None" ]; then
# Use a location elsewhere on the system. Don't copy it.
echo "Linking experiment_management..." | tee -a $expr_mgmt_get_log
ln -s $expr_mgmt_loc $expr_dir >> $expr_mgmt_get_log 2>&1
if [ ! -d "${expr_dir}" ]; then
expr_mgmt_stat="unable to link"
expr_mgmt_ok="FAIL"
else
expr_mgmt_stat="successfully linked"
expr_mgmt_ok="PASS"
fi
else
# Copy the directory into the regression suite's installation directory
echo "Copying experiment_management..." | tee -a $expr_mgmt_get_log
${basedir}/src_cp.sh $expr_mgmt_src_from $expr_dir >> $expr_mgmt_get_log 2>&1
if [[ $? == 0 ]]; then
expr_mgmt_stat="successfully copied"
expr_mgmt_ok="PASS"
else
expr_mgmt_stat="unable to copy"
expr_mgmt_ok="FAIL"
fi
fi
# Now check that we have a valid experiment_management framework if
# everything has gone well up to this point.
if [ "$expr_mgmt_ok" == "PASS" ]; then
if [ ! -e "$expr_dir/run_expr.py" ] || \
[ ! -f "$expr_dir/lib/expr_mgmt.py" ] || \
[ ! -f "$expr_dir/lib/fs_test.py" ]; then
expr_mgmt_stat="$expr_dir is not a valid experiment_management framework."
expr_mgmt_ok="FAIL"
echo $expr_mgmt_stat >> $expr_mgmt_get_log
echo "The following files are expected for a valid framework:" >> $expr_mgmt_get_log
echo "experiment_management/run_expr.py (must be executable)" >> $expr_mgmt_get_log
echo "experiment_management/lib/expr_mgmt.py" >> $expr_mgmt_get_log
echo "experiment_management/lib/fs_test.py" >> $expr_mgmt_get_log
fi
fi
fi
echo $expr_mgmt_stat
if [ "$expr_mgmt_ok" == "FAIL" ]; then
script_exit 1
fi
# fs_test
echo "Checking fs_test. Please see $fs_test_build_log."
# Since we may have multiple versions of the fs_test executable, the fs_test_build.sh
# script will not remove previous versions of the executable from the installation
# location. We will do it once here.
if [ -d "${instdir}/test_fs" ]; then
echo "Removing $instdir/test_fs" > $fs_test_build_log 2>&1
rm -rf $instdir/test_fs >> $fs_test_build_log 2>&1
if [ -d "${instdir}/test_fs" ]; then
echo "Error: Unable to remove $instdir/test_fs" >> $fs_test_build_log 2>&1
fs_test_stat="unable to remove old fs_test installation"
fs_test_ok="FAIL"
fi
fi
if [ "$fs_test_ok" == "PASS" ]; then
if [ "$fs_test_src_from" == "None" ]; then
# Getting the executable from somewhere else (not compiling it here).
echo "Linking fs_test..." | tee -a $fs_test_build_log
# We already know, based on the check on the config file, that the
# fs_test executable is a valid executable. Just link it in to the
# regression suite
fs_test_stat="fs_test successfully found"
# The directory should already be removed or we wouldn't be in this
# code block.
mkdir ${instdir}/test_fs >> $fs_test_build_log 2>&1
ln -s $fs_test_loc ${instdir}/test_fs/fs_test.${MY_MPI_HOST}.x >> $fs_test_build_log 2>&1
if [ ! -e "${instdir}/test_fs/fs_test.${MY_MPI_HOST}.x" ]; then
fs_test_stat="unable to create new fs_test installation"
fs_test_ok="FAIL"
else
fs_test_stat="successfully linked"
fs_test_ok="PASS"
fi
else
echo "Building fs_test..." | tee -a $fs_test_build_log
# Copy the source
${basedir}/src_cp.sh $fs_test_src_from $srcdir/test_fs > $fs_test_build_log 2>&1
#grep -q processor /proc/cpuinfo
if [[ $? == 0 ]]; then
# Build fs_test
${basedir}/fs_test_build.sh $srcdir ${instdir}/test_fs >> $fs_test_build_log 2>&1
#grep -q processor /proc/cpuinfo
if [[ $? == 0 ]]; then
fs_test_stat="Successfully built and installed"
fs_test_ok="PASS"
else
fs_test_stat="Building and installing failed"
fs_test_ok="FAIL"
fi
else
fs_test_stat="Copying source failed"
fs_test_ok="FAIL"
fi
fi
fi
echo $fs_test_stat | tee -a $fs_test_build_log
if [ "$fs_test_ok" == "FAIL" ]; then
script_exit 1
fi
else
echo "--nobuild used...skipping source retrevial and building"
plfs_stat="skipped due to configuration"
plfs_ok="PASS"
mpi_stat="skipped due to configuration"
mpi_ok="PASS"
fs_test_stat="skipped due to configuration"
fs_test_ok="PASS"
expr_mgmt_stat="skipped due to configuration"
expr_mgmt_ok="PASS"
# Call the helper script that will set up the environment to use the
# regression suite's binaries and libraries.
source ${basedir}/tests/utils/rs_env_init.sh >> /dev/null