Skip to content

Commit c716a74

Browse files
committed
Spelling fixes
1 parent 0681524 commit c716a74

105 files changed

Lines changed: 303 additions & 303 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

common_tools/cloc/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Included in this directory is a snapshot of the GPL Perl script cloc.pl. This
44
is a source code line counting tool. Also contained in this directory are the
55
files cloc.<LANGUAGE_TYPE>.in that defines specializations of the default cloc
6-
langauge definitions for TriBITS software. Adding a language definition file
6+
language definitions for TriBITS software. Adding a language definition file
77
directly to TriBITS aids in trying to help standardize the names of language
88
files a little.
99

@@ -19,10 +19,10 @@ Here, the different language definition files are:
1919
$TRIBITS_DIR/common_tools/cloc/cloc.core-languages.in
2020
$TRIBITS_DIR/common_tools/cloc/cloc.script-languages.in
2121

22-
Different TriBITS projects can copy these langauge definition files and define
22+
Different TriBITS projects can copy these language definition files and define
2323
their own language standards. However, for the purposes of TriBITS meta build
2424
across projects, it would be beneficial if all TriBITS projects could use a
2525
single standard for language file extensions.
2626

27-
This will print statisitics to the screen. See cloc.pl --help for other
27+
This will print statistics to the screen. See cloc.pl --help for other
2828
useful option.

common_tools/cloc/cloc.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ BEGIN
160160
name per line. See also --exclude-list-file.
161161
--unicode Check binary files to see if they contain Unicode
162162
expanded ASCII text. This causes performance to
163-
drop noticably.
163+
drop noticeably.
164164
165165
${BB}Processing Options${NN}
166166
--autoconf Count .in files (as processed by GNU autoconf) of
@@ -2757,7 +2757,7 @@ sub classify_file { # {{{1
27572757
foreach my $extension (@extension_list) {
27582758
if ($Not_Code_Extension{$extension} and
27592759
!$Forced_Extension{$extension}) {
2760-
# If .1 (for example) is an extention that would ordinarily be
2760+
# If .1 (for example) is an extension that would ordinarily be
27612761
# ignored but the user has insisted this be counted with the
27622762
# --force-lang option, then go ahead and count it.
27632763
$rh_ignored->{$full_file} =
@@ -6653,7 +6653,7 @@ sub matlab_or_objective_C { # {{{1
66536653
# Objective C without a doubt
66546654
$objective_C_points = 1;
66556655
$matlab_points = 0;
6656-
printf ".m: #includ obj C=% 2d matlab=% 2d mumps=% 2d\n", $objective_C_points, $matlab_points, $mumps_points if $DEBUG;
6656+
printf ".m: #include obj C=% 2d matlab=% 2d mumps=% 2d\n", $objective_C_points, $matlab_points, $mumps_points if $DEBUG;
66576657
last;
66586658
} elsif (m{^\s*@(interface|implementation|protocol|public|protected|private|end)\s}o) {
66596659
# Objective C without a doubt
@@ -8184,7 +8184,7 @@ sub really_is_incpascal { # {{{1
81848184

81858185
# The heuristic is as follows: it is Pacal if any of the following:
81868186
# 1. really_is_pascal returns true
8187-
# 2. Any usual reserverd word is found (program, unit, const, begin...)
8187+
# 2. Any usual reserved word is found (program, unit, const, begin...)
81888188

81898189
# If the general routine for Pascal files works, we have it
81908190
if (&really_is_pascal ($filename)) {

common_tools/git/commit-summary-over-periods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
5858
This script collects statistics for the number of commit by the given authors
5959
over a number of time periods (default months) and produces a summary table
60-
sutable for import and plotting.
60+
suitable for import and plotting.
6161
"""
6262

6363
from optparse import OptionParser

common_tools/git/find_largest_git_files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# 1) Removed the division by /1024 because it did not allow printing smaller
1919
# sizes. Now the script reports sizes in bytes, not kilobites
2020
#
21-
# 2) Accept number <N> in command-line arugment for number of files to report
21+
# 2) Accept number <N> in command-line argument for number of files to report
2222
# sizes for.
2323

2424
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output

common_tools/git/hooks/README.SETUP

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Set up email notification hooks
1515

1616
$ cd GIT_REPO_BASE_DIR
1717
$ echo "
18-
base_dir_1/subdir email1@somthing.com,email2@somthing.com
18+
base_dir_1/subdir email1@something.com,email2@something.com
1919
base_dir_1 email3@something.com
2020
...
2121
.+ defaultemail@something.com

common_tools/git/hooks/get_recipients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454

5555
#
56-
# B) Pick out recipients based on matches to directories chagned
56+
# B) Pick out recipients based on matches to directories changed
5757
#
5858

5959
output=commands.getoutput("git diff --name-only %s %s" % (oldrev, newrev))

common_tools/git/hooks/post-receive-email

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
# ------------------------------------
4242
# If you care... The original script jumped through extra hoops to make sure
4343
# the log info for commit messages was only ever sent once. For example, if
44-
# a push added existing commits to a different branch, it would not list thos
44+
# a push added existing commits to a different branch, it would not list those
4545
# commit messages in the email. Here, we always list the commit messages for
4646
# all the commits that change a branch.
4747
#
@@ -251,7 +251,7 @@ generate_update_branch_email()
251251
#
252252
# git rev-parse --not --all | grep -v $(git rev-parse $refname)
253253
#
254-
# Get's us to something pretty safe (apart from the small time
254+
# Gets us to something pretty safe (apart from the small time
255255
# between refname being read, and git rev-parse running - for that,
256256
# I give up)
257257
#
@@ -340,7 +340,7 @@ generate_update_branch_email()
340340
echo " \\"
341341
echo " O -- O -- O ($oldrev)"
342342
echo ""
343-
echo "The removed revisions are not necessarilly gone - if another reference"
343+
echo "The removed revisions are not necessarily gone - if another reference"
344344
echo "still refers to them they will stay in the repository."
345345
echo ""
346346
rewind_only=1

common_tools/git/hooks/pre-receive-check-policy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# This script checks gnome.org policy about how people are supposed to
44
# use git; the intent of the policy is to keep people from shooting
5-
# themselve in the foot.
5+
# themselves in the foot.
66
#
77
# Eventually, we'd like to have an ability to override policy; one way
88
# it could work is that if you did 'git push --exec=force' and you
@@ -134,7 +134,7 @@ EOF
134134
#
135135
# Expression here is same as in post-receive-notify-cia; we take
136136
# all the branches in the repo, as "^/ref/heads/branchname", other
137-
# than the branch we are actualy committing to, and exclude commits
137+
# than the branch we are actually committing to, and exclude commits
138138
# already on those branches from the list of commits between
139139
# $oldrev and $newrev.
140140

test/ci_support/CMakeCache.large.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1645,10 +1645,10 @@ MPI_C_LINK_FLAGS:STRING= -Wl,-rpath -Wl,/projects/vera/gcc-4.8.3/toolset/mpich-
16451645
//Where can one of the mpiexec or mpirun libraries be found
16461646
MPI_EXEC:FILEPATH=/projects/vera/gcc-4.8.3/toolset/mpich-3.1.3/bin/mpiexec
16471647

1648-
//The default mumber of processes to use when running MPI programs.
1648+
//The default number of processes to use when running MPI programs.
16491649
MPI_EXEC_DEFAULT_NUMPROCS:STRING=4
16501650

1651-
//The maximum mumber of processes to use when running MPI programs.
1651+
//The maximum number of processes to use when running MPI programs.
16521652
// Tests with more procs are excluded.
16531653
MPI_EXEC_MAX_NUMPROCS:STRING=12
16541654

@@ -3889,7 +3889,7 @@ TPL_QT_INCLUDE_DIRS:PATH=/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/include/QtDe
38893889
TPL_QT_LIBRARIES:PATH=/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtXmlPatterns.so;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtNetwork.so;optimized;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtSql.so;debug;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtSql_debug.so;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtGui.so;optimized;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtTest.so;debug;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtTest_debug.so;optimized;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtXml.so;debug;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtXml_debug.so;optimized;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtCore.so;debug;/projects/vera/gcc-4.8.3/tpls/opt/qt-4.8.2/lib/libQtCore_debug.so;pthread
38903890

38913891
//A FindTPLQT.cmake specific variable that defines where the Qt
3892-
// Qmake Execuatable is
3892+
// Qmake Executable is
38933893
TPL_QT_QMAKE_EXECUTABLE:STRING=
38943894

38953895
//List of semi-colon separated paths to append to the compile invocations
@@ -4276,7 +4276,7 @@ Tpetra_INST_COMPLEX_FLOAT:BOOL=OFF
42764276
Tpetra_INST_CUDA:BOOL=OFF
42774277

42784278
//Instantiate and/or test Tpetra classes over Scalar = dd_real
4279-
// (requries TPL QD). This option is OFF by default.
4279+
// (requires TPL QD). This option is OFF by default.
42804280
Tpetra_INST_DD_REAL:BOOL=OFF
42814281

42824282
//Set by default in vera-core-enables.disables.cmake
@@ -4316,7 +4316,7 @@ Tpetra_INST_OPENMP:BOOL=OFF
43164316
Tpetra_INST_PTHREAD:BOOL=OFF
43174317

43184318
//Instantiate and/or test Tpetra classes over Scalar = qd_real
4319-
// (requries TPL QD). This option is OFF by default.
4319+
// (requires TPL QD). This option is OFF by default.
43204320
Tpetra_INST_QD_REAL:BOOL=OFF
43214321

43224322
//Set by default in vera-core-enables.disables.cmake

test/ci_support/CheckinTest_UnitTests.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ def checkin_test_run_case(testObject, testName, optionsStr, cmndInterceptsStr, \
16271627
"--with-cmake=\""+g_withCmake+"\"",
16281628
"--project-name=Trilinos",
16291629
"--src-dir="+mockProjectBaseDir,
1630-
"--send-email-to=bogous@somwhere.com",
1630+
"--send-email-to=bogous@somewhere.com",
16311631
"--project-configuration=%s" % os.path.join(g_testBaseDir,
16321632
'CheckinTest_UnitTests_Config.py'),
16331633
optionsStr,
@@ -1657,7 +1657,7 @@ def checkin_test_run_case(testObject, testName, optionsStr, cmndInterceptsStr, \
16571657

16581658
if inPathGit:
16591659
baseCmndInterceptsStr += \
1660-
"IT: git config --get user.email; 0; bogous@somwhere.com\n" \
1660+
"IT: git config --get user.email; 0; bogous@somewhere.com\n" \
16611661
+"IT: which git; 0; /some/path/git\n"
16621662

16631663
fullCmndInterceptsStr = baseCmndInterceptsStr + cmndInterceptsStr
@@ -1724,7 +1724,7 @@ def checkin_test_run_case(testObject, testName, optionsStr, cmndInterceptsStr, \
17241724
os.environ['GENERAL_SCRIPT_SUPPORT_CMND_INTERCEPTS_FILE']=""
17251725

17261726

1727-
# Helper test case that is used as the inital case for other tests
1727+
# Helper test case that is used as the initial case for other tests
17281728
def g_test_do_all_default_builds_mpi_debug_pass(testObject, testName):
17291729
checkin_test_run_case(
17301730
\
@@ -2138,15 +2138,15 @@ def test_do_all_push_pass(self):
21382138
assertFileNotExists(self, serialReleaseDir+"/email.success")
21392139
assertFileNotExists(self, serialReleaseDir+"/email.out")
21402140

2141-
# Make sure that the readyness check after the push reports the right
2141+
# Make sure that the readiness check after the push reports the right
21422142
# status.
21432143
checkin_test_run_case(
21442144
\
21452145
self,
21462146
\
21472147
testName,
21482148
\
2149-
"", # Just the default the readyness check!
2149+
"", # Just the default the readiness check!
21502150
\
21512151
g_cmndinterceptsDumpDepsXMLFile \
21522152
+cmndinterceptsGetRepoStatsPass() \
@@ -2163,7 +2163,7 @@ def test_do_all_push_pass(self):
21632163
+"REQUESTED ACTIONS: FAILED\n" \
21642164
)
21652165

2166-
# Make sure that the readyness check ignoring no --pull returns the right
2166+
# Make sure that the readiness check ignoring no --pull returns the right
21672167
# status status.
21682168
checkin_test_run_case(
21692169
\
@@ -2233,7 +2233,7 @@ def test_do_all_no_git_installed(self):
22332233
+" --do-all --push" \
22342234
,
22352235
\
2236-
"IT: git config --get user.email; 0; bogous@somwhere.com\n" \
2236+
"IT: git config --get user.email; 0; bogous@somewhere.com\n" \
22372237
+"IT: which git; 1; '/usr/bin/which: no git in (path1:path2:path3)'\n" \
22382238
,
22392239
\
@@ -2509,7 +2509,7 @@ def test_abort_gracefully_if_no_enables(self):
25092509
+"1) SERIAL_RELEASE => Skipped configure, build, test due to no enabled packages! => Does not affect push readiness!\n" \
25102510
+"MPI_DEBUG: Skipping sending build/test case email because there were no enables and --abort-gracefully-if-no-enables was set!\n"
25112511
+"SERIAL_RELEASE: Skipping sending build/test case email because there were no enables and --abort-gracefully-if-no-enables was set!\n"
2512-
+"There were no successfuly attempts to configure/build/test!\n" \
2512+
+"There were no successfully attempts to configure/build/test!\n" \
25132513
+"Skipping sending final email because there were no enables and --abort-gracefully-if-no-enables was set!\n" \
25142514
+"ABORTED DUE TO NO ENABLES: Trilinos:\n" \
25152515
+"REQUESTED ACTIONS: PASSED\n" \
@@ -3241,7 +3241,7 @@ def test_extra_repo_1_abort_gracefully_if_no_changes_to_push_passes(self):
32413241
"Pulling in packages from POST extra repos: preCopyrightTrilinos ...\n" \
32423242
+"Did not pull any changes from this repo!\n" \
32433243
+"No changes were pulled!\n" \
3244-
+"Not perfoming any build cases because there are no local changes to push" \
3244+
+"Not performing any build cases because there are no local changes to push" \
32453245
" and --abort-gracefully-if-no-changes-to-push!\n" \
32463246
+"Skipping sending final email because there are no local changes to push" \
32473247
" and --abort-gracefully-if-no-changes-to-push was set!\n" \
@@ -3880,7 +3880,7 @@ def test_enable_extra_packages(self):
38803880
"Full package enable list: \[Teuchos,RTOp,Thyra\]\n" \
38813881
)
38823882
# Above, the --enable-extra-packages option leave on the check of the modified
3883-
# files ahd just appends the set of enabled pacakges
3883+
# files ahd just appends the set of enabled packages
38843884

38853885

38863886
def test_disable_packages(self):
@@ -3953,7 +3953,7 @@ def test_enable_all_packages_auto(self):
39533953
"--enable-all-packages=auto",
39543954
"\-DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON\n",
39553955
modifiedFilesStr="CMakeLists.txt", # Will not trigger TrilinosFramework!
3956-
extraPassRegexStr="Modifed file: .CMakeLists.txt.\n"\
3956+
extraPassRegexStr="Modified file: .CMakeLists.txt.\n"\
39573957
+"Enabling all Trilinos packages!\n",
39583958
)
39593959

@@ -4725,7 +4725,7 @@ def test_st_extra_builds_ex_only_fail(self):
47254725
"ThyraCrazyStuff of type EX is being excluded because it is not in the valid list of package types .PT,ST.\n" \
47264726
+"passed: Trilinos/MPI_DEBUG: skipped configure, build, test due to no enabled packages\n" \
47274727
+"passed: Trilinos/MPI_DEBUG_ST: skipped configure, build, test due to no enabled packages\n" \
4728-
+"There were no successfuly attempts to configure/build/test!\n" \
4728+
+"There were no successfully attempts to configure/build/test!\n" \
47294729
+" => A PUSH IS .NOT. READY TO BE PERFORMED!\n" \
47304730
+"^PUSH FAILED\n" \
47314731
+"^REQUESTED ACTIONS: FAILED\n" \
@@ -5415,7 +5415,7 @@ def test_do_all_push_default_builds_mpi_debug_final_commit_fail(self):
54155415
+g_expectedCommonOptionsSummary \
54165416
+"A PUSH IS READY TO BE PERFORMED!\n" \
54175417
+"Final pull passed!\n" \
5418-
+"Attempting to amend the final commmit message ...\n" \
5418+
+"Attempting to amend the final commit message ...\n" \
54195419
+"Appending test results to last commit failed!\n" \
54205420
+"Not performing push due to prior errors!\n" \
54215421
+"AMEND COMMIT FAILED: Trilinos:\n" \
@@ -5625,9 +5625,9 @@ def test_send_email_only_on_failure_do_all_mpi_debug_build_configure_fail(self):
56255625
+g_expectedRegexBuildPasses \
56265626
+g_expectedRegexTestPasses \
56275627
+g_expectedCommonOptionsSummary \
5628-
+"Running: mailx -s .FAILED: Trilinos/MPI_DEBUG: configure failed. bogous@somwhere.com\n" \
5628+
+"Running: mailx -s .FAILED: Trilinos/MPI_DEBUG: configure failed. bogous@somewhere.com\n" \
56295629
+"SERIAL_RELEASE: Skipping sending build/test case email because it passed and --send-email-only-on-failure was set!\n" \
5630-
+"Running: mailx -s .FAILED CONFIGURE/BUILD/TEST: Trilinos: .* bogous@somwhere.com\n" \
5630+
+"Running: mailx -s .FAILED CONFIGURE/BUILD/TEST: Trilinos: .* bogous@somewhere.com\n" \
56315631
)
56325632

56335633

0 commit comments

Comments
 (0)