Changes on 2020-05-20 for repository at:
Fetch URL: git@github.com:abeltje/Test-Smoke.git
Push URL: git@github.com:abeltje/Test-Smoke.git
Enjoy!
1.78 2020-05-20T16:50:59+02:00 (d4bd262 => Abe Timmerman)
- (Abe Timmerman, 65 seconds ago) Autocommit for distribution Test::Smoke
1.78 (minor)
1.77_04 2020-05-20T12:28:49+02:00 (9c4724d => Abe Timmerman)
- (Abe Timmerman, 4 hours ago) Autocommit for distribution Test::Smoke
1.77_04 (test)
- (Abe Timmerman, 6 minutes ago) More cleanup of HTTP::Lite: 28f09320
wasn't enough
- We really dropped support for HTTP::Lite
1.77_03 2020-05-19T23:11:59+02:00 (40678ef => Abe Timmerman)
- (Abe Timmerman, 18 hours ago) Autocommit for distribution Test::Smoke
1.77_03 (test)
- (Abe Timmerman, 4 hours ago) More poster-post problems (HTTP::Tiny)
- IPv6 is not supported in HTTP::Tiny < 0.042. Alas 5.24.[1-4]
shipped
- with a DEV-version of the module. We must now use
`version->parse()` to
- compare `$HTTP::Tiny::VERSION`
1.77_02 2020-05-19T15:20:21+02:00 (e978fd4 => Abe Timmerman)
- (Abe Timmerman, 26 hours ago) Autocommit for distribution Test::Smoke
1.77_02 (test)
- (Abe Timmerman, 25 hours ago) State MIN_PERL_VERSION in Makefile.PL
- 6 years overdue... sorry Neil
- (Abe Timmerman, 25 hours ago) RT#132507: Remove the version number
- (Abe Timmerman, 18 hours ago) More poster-post problems (curl)
- Older curls do need some help to understand the 'http://[::1]:54321'
- syntax, so quote the argument and use the '--globoff' switch
- (Abe Timmerman, 18 hours ago) Merge branch
'cleanup/remove_support_HTTP_Lite'
1.77_01 2020-05-19T11:52:30+02:00 (d959cb4 => Abe Timmerman)
- (Abe Timmerman, 29 hours ago) Test::Smoke::LogMixin: no sprintf without
arguments
- The log_* routines use the sprintf() way of creating log-lines. When
- there are no arguments, there is no need to use sprintf() and risk
- warnings about missing arguments or invalid conversion for bare %
signs.
- (I ran into this with the output of `git clone`)
- (Abe Timmerman, 28 hours ago) Test::Smoke::Syncer::Git: fix problem with
the branchfile
- The first line was read but not chomp()ed, so if one had
(mistakenly)
- put multiple lines in the file, the command line for the `git
checkout`
- would have been wrong and that branch would not have been checked
out.
- I hope that this also resolves part of RT#128950
- (Abe Timmerman, 26 hours ago) Prefer JSON::PP over JSON::XS
- (Abe Timmerman, 26 hours ago) Provide better flow and diagnostics for
the Posters
- Untangle the actual POST and json-decode in the `post`-method.
- Also make the clients die from the `_post_data`-method if the
request
- didn't return a 2xx.
- (Abe Timmerman, 26 hours ago) Provide better diagnostics on failure with
TEST_VERBOSE
- This provides invalid TAP, but compile-errors are worse!
1.77 2020-05-18T18:55:53+02:00 (046d80a => Abe Timmerman)
- (Abe Timmerman, 2 days ago) Remove support for HTTP::Lite
- We ran into a bug for HTTP::Lite that was reported 6 years ago, that
- will not be fixed anymore. No need to keep support for this module
- around now that HTTP::Tiny is in core (>= 5.14).
1.76_01 2020-05-13T15:51:25+02:00 (c5bf6ca => Abe Timmerman)
- (Abe Timmerman, 7 days ago) Autocommit for distribution Test::Smoke
1.76_01 (test)
1.76 2020-05-12T20:54:37+02:00 (0801dd6 => Abe Timmerman)
- (Abe Timmerman, 8 days ago) Autocommit for distribution Test::Smoke 1.76
(minor)
- (H.Merijn Brand, 1 year, 1 month ago) Add support for -Uxx and -Dxx=y on
tssmokeperl.pl
- When a smokescript smokes for two different compilers, it is likely
to use
- something like
- :
- /pro/bin/perl tssmokeperl.pl --nofetch --nopatch \
- -c "$CFGNAME" $continue $* -Dcc=gcc > p59.log 2>&1
- :
- :
- /pro/bin/perl tssmokeperl.pl --nofetch --nopatch \
- -c "$CFGNAME" $continue $* -Dcc=g++ > p59.log 2>&1
- :
- This change allows tssmokeperl.pl to accept -Dcc=gcc and/or -Ucc
- and make it DWIM. Before this change, these command-line options
- were silently ignored.
- Only existing options can be (un)set
- (H.Merijn Brand - Tux, 1 year, 1 month ago) Moving -Dxx=... and -Uxx to
the correct spot
- (H.Merijn Brand - Tux, 1 year, 1 month ago) Also allow -A options
- (Abe Timmerman, 7 days ago) Add a Serialiser
- This is a simple serialiser, I still have to hunt the rest of the
code
- for uses of Data::Dumper type serialisations and see if I can change
- them.
- (Abe Timmerman, 7 days ago) Add a '--pass_option' switch to the
runsmoke-applet
- This (repeatable) option will let one pass extra options to
Configure
- from the 'tsrunsmoke.pl' (and thus 'tssmokeperl.pl') commandline:
- ~/coresmoke/ts/bin/tssmokeperl.pl -c "$CFGNAME" $* \
- --pass-option '-Dusesuperthreads' \
- -p '-Uusesuperfiles' > p59.log 2>&1
- This is what Tux put in a commit message for a different solution of
- his own request:
- When a smokescript smokes for two different compilers, it is likely
to
- use something like
- /pro/bin/perl tssmokeperl.pl --nofetch --nopatch \
- -c "$CFGNAME" $continue $* -Dcc=gcc > p59.log 2>&1
- /pro/bin/perl tssmokeperl.pl --nofetch --nopatch \
- -c "$CFGNAME" $continue $* -Dcc=g++ > p59.log 2>&1
- This change allows tssmokeperl.pl to accept -Dcc=gcc and/or -Ucc
- and make it DWIM. Before this change, these command-line options
- were silently ignored.
1.75 2020-03-01T12:41:23+01:00 (995b2f9 => Abe Timmerman)
- (Abe Timmerman, 3 months ago) Autocommit for distribution Test::Smoke
1.75 (same)
- (H.Merijn Brand - Tux, 7 months ago) Ignore all date/time information in
dot_patch
- As we are only interested in the branch (first field), the sha and
the
- describe (last two fields), just take those and ignore everything in
- between, so we cannot be fooled by (missing) time-zones or date
formats
- that do not match our expectation
1.74 2020-02-09T16:36:26+01:00 (f119510 => Abe Timmerman)
- (Abe Timmerman, 3 months ago) Autocommit for distribution Test::Smoke
1.74 (minor)
- (Abe Timmerman, 3 months ago) FIX: add dependency introduced by
be0b7a9438bdc9b25176dc8676641aff3bfc6413
- We forgot to add Capture::Tiny to the dependencies in Makefile.PL
1.73 2019-08-13T09:33:02+02:00 (b6ca9bd => Abe Timmerman)
- (Abe Timmerman, 9 months ago) Autocommit for distribution Test::Smoke
1.73 (minor)
- (James E Keenan, 3 months ago) Update location of Perl 5 repository
- Note that I did not attempt to update all instances of the old
- repository in bin/configsmoke.pl.
- Needs careful code review.
- For: https://rt.cpan.org/Ticket/Display.html?id=131711
- (Abe Timmerman, 3 months ago) Merge branch 'master' of
github.com:abeltje/Test-Smoke
- (Abe Timmerman, 3 months ago) Merge branch 'rtc-131711-perl5-repository'
of https://github.com/jkeenan/Test-Smoke into
jkeenan-rtc-131711-perl5-repository
- (Abe Timmerman, 3 months ago) Merge branch
'jkeenan-rtc-131711-perl5-repository'
1.72_07 2019-08-07T13:10:16+03:00 (2b62635 => Abe Timmerman)
- (Abe Timmerman, 10 months ago) Autocommit for distribution Test::Smoke
1.72_07 (test)
1.72_05 2018-04-22T13:15:31+02:00 (91ae91a => abeltje)
- (abeltje, 2 years, 1 month ago) Autocommit for distribution Test::Smoke
1.72_05 (test)
- (James E Keenan, 1 year, 9 months ago) Report all failing unit tests and
sequences thereof.
- The 'log' and 'out' files were correctly identifying failed unit
tests and
- sequences thereof, e.g.:
-
../lib/locale.t.............................................FAILED
- 436-437, 441, 444, 458
- However, only the first of these was being captured by
- Test::Smoke::Reporter::_parse() -- called from within
- Test::Smoke::Reporter::read_parse() -- and, hence, only the first
was
- available for recording in the 'jsn' file:
- "failures" : [
- {
- "status" : "FAILED",
- "extra" : [
- "436-437"
- ],
- "test" : "../lib/locale.t"
- }
- ],
- And since it is the 'jsn' file that is sent to the CoreSmoke
database -- from
- which the web display draws its data -- the web page was only
showing this:
- Test failures:
- ~~ ../lib/locale.t ................................ FAILED
436-437
- Cf. http://perl5.test-smoke.org/report/68034
- This commit improves the regex capturing the numbers of failing unit
tests and
- sequences of such tests. In t/reporter.t one block of tests similar
to
- existing blocks is added.
- The commit also adds to .gitignore one file created during testing.
- For: RTC 125932
- (James E Keenan, 1 year, 9 months ago) Correct typo in 4 log messages.
- For: rt.cpan.org 126045
- (James E Keenan, 1 year, 9 months ago) Correct spelling of 'omitted' in
5 locations.
- (James E Keenan, 1 year, 9 months ago) Report all failing unit tests and
sequences thereof.
- For: https://rt.cpan.org/Ticket/Display.html?id=125932
- In directory logs/smokecurrent/, the '.log' and '.out' files were
correctly
- identifying failed unit tests and sequences thereof, e.g.:
-
../lib/locale.t.............................................FAILED
- 436-437, 441, 444, 458
- However, only the first of these unit test numbers or sequences was
being
- captured by Test::Smoke::Reporter::_parse() -- called from within
- Test::Smoke::Reporter::read_parse(). Hence, only the first was
- available for recording in the '.jsn' file:
- "failures" : [
- {
- "status" : "FAILED",
- "extra" : [
- "436-437"
- ],
- "test" : "../lib/locale.t"
- }
- ],
- And since it is the '.jsn' file that is sent to the CoreSmoke
database -- from
- which the web display draws its data -- the web page was only
showing this:
- Test failures:
- ~~ ../lib/locale.t ................................ FAILED
436-437
- Cf. http://perl5.test-smoke.org/report/68034
- This commit improves the regex capturing the numbers of failing unit
tests and
- sequences of such tests. In t/reporter.t one block of tests similar
to
- existing blocks is added.
- The commit also adds to .gitignore one file created during testing.
- For: RTC 125932
- (James E Keenan, 1 year, 9 months ago) Merge branch
'rt-125932-defective-json' of github.com:jkeenan/Test-Smoke into
rt-125932-defective-json
- (Abe Timmerman, 1 year, 9 months ago) Merge branch
'jkeenan-typo-omitted-20180814'
- (Abe Timmerman, 1 year, 9 months ago) Merge branch
'rtc-126045-exits-test-smoke-archiver-20180812' of
https://github.com/jkeenan/Test-Smoke into
jkeenan-rtc-126045-exits-test-smoke-archiver-20180812
- (Abe Timmerman, 1 year, 9 months ago) Merge branch
'jkeenan-rtc-126045-exits-test-smoke-archiver-20180812'
- (Abe Timmerman, 1 year, 9 months ago) Merge branch
'rt-125932-defective-json' of https://github.com/jkeenan/Test-Smoke into
jkeenan-rt-125932-defective-json
- (Abe Timmerman, 1 year, 9 months ago) Merge branch
'jkeenan-rt-125932-defective-json'
- (James E Keenan, 1 year, 9 months ago) Correct one typo in
Test::Smoke::App::Base docs.
- (Abe Timmerman, 1 year, 6 months ago) Set autoflush on STDOUT for all
the scripts
- The output from the smoke-scripts was buffered, this resulted in
- incomplete log files for the archive function.
- (Abe Timmerman, 1 year, 6 months ago) Merge branch
'feature/jkeenan_merges'
- (Abe Timmerman, 1 year, 6 months ago) Clean-up t/config.sh after tests
- (Abe Timmerman, 1 year, 6 months ago) Test::Smoke::Syncer::Git - reset
working dir before branch
- We update the `patchlevel.h` file before the smoke. In some cases
this
- changed file doesn't allow us to checkout the branch we want to
smoke,
- so now before we start updating the working dir we `reset --hard
HEAD`
- See also RT#127577
- (Abe Timmerman, 1 year, 6 months ago) Autocommit for distribution
Test::Smoke 1.72_06 (same)
- (Christian Walde, 1 year, 9 months ago) prevent git syncer from failing
on trying to log clone progress with %s
- (Christian Walde, 1 year, 9 months ago) throw an error if no makefile is
known for the specified win32 make
- (Christian Walde, 1 year, 9 months ago) ensure newlines of the munged
win32 makefile don't get mangled
- (Christian Walde, 1 year, 9 months ago) allow using gmake on win32
- (Christian Walde, 1 year, 9 months ago) recognize win32 gnumakefile
assignments in makefile preparation
- (Christian Walde, 1 year, 9 months ago) don't munge makefile lines that
remain uncommented in win32 makefile prep
- (Christian Walde, 1 year, 9 months ago) split Smoker::_make into os subs
and silence stderr with nul on win32
- (Christian Walde, 1 year, 9 months ago) switch _run from qx to
Capture::Tiny
- (Christian Walde, 1 year, 9 months ago) on windows, dump make stdout
under gcc as well
- (Christian Walde, 1 year, 9 months ago) add binmode so change_manifest
doesn't mangle the makefile too badly
- (Christian Walde, 1 year, 9 months ago) [HACK] convert set_skip_tests to
replace skipped tests with print ok 1
- this works around a shitton of manifest- and manifest-test-related
issues,
- but also breaks the unsetting. might needs to work by copying the
skipped
- tests somewhere else.
- (Christian Walde, 1 year, 9 months ago) add w32args to general options
list for runsmoke
- not sure if this is useful, was an attempt to get cchome into the
makefile,
- but didn't work
- (H.Merijn Brand - Tux, 1 year, 1 month ago) Revert "[HACK] convert
set_skip_tests to replace skipped tests with print ok 1"
- This reverts commit 69aeba164af185eaaf93aba106dfaa4583ab104e.
- (Christian Walde, 1 year, 1 month ago) skip tests by modifying them in
place instead of renaming them
- (H.Merijn Brand - Tux, 1 year, 1 month ago) Using Test::Smoke out of the
box on Win32
- Thank you Christian for the time and effort
- (H.Merijn Brand - Tux, 1 year, 1 month ago) Correct minor typo in docs
- (Abe Timmerman, 1 year ago) Autocommit for distribution Test::Smoke
1.72_07 (test)
- (James E Keenan, 11 months ago) Correct spelling error in 3 places in
documentation
- For: https://rt.cpan.org/Ticket/Display.html?id=129993
- (Abe Timmerman, 10 months ago) Merge branch
'typo-test-smoke-app-base-20180817' of
https://github.com/jkeenan/Test-Smoke into
jkeenan-typo-test-smoke-app-base-20180817
- (Abe Timmerman, 10 months ago) Merge branch
'jkeenan-typo-test-smoke-app-base-20180817'
- (Abe Timmerman, 10 months ago) Merge branch
'rtc-129993-test-smoke-reporter-typos' of
https://github.com/jkeenan/Test-Smoke into
jkeenan-rtc-129993-test-smoke-reporter-typos
- (Abe Timmerman, 10 months ago) Merge branch
'jkeenan-rtc-129993-test-smoke-reporter-typos'
1.72_04 2018-04-22T13:09:44+02:00 (9868726 => abeltje)
- (abeltje, 2 years, 1 month ago) Merge branch 'master' of
https://github.com/chorny/Test-Smoke into chorny-master
1.72_03 2018-04-22T09:00:03+02:00 (4b93a62 => abeltje)
- (abeltje, 2 years, 1 month ago) Autocommit for distribution Test::Smoke
1.72_03 (test)
- (abeltje, 2 years, 1 month ago) Implement $ENV{PERL_JSON_BACKEND} for
Test::Smoke::Util::LoadAJSON
- This fixes a problem on MSWin32 where fork() and JSON::XS don't play
- nice together.
- Add a dependency for 'Win32::API' on MSWin32.
1.72_02 2018-04-20T22:52:14+02:00 (2856c2b => abeltje)
- (abeltje, 2 years, 1 month ago) Autocommit for distribution Test::Smoke
1.72_02 (test)
- (abeltje, 2 years, 1 month ago)
https://github.com/abeltje/CoreSmokeDB/issues/8
- These configuration options were not passed to the software. Neither
did
- they have a sane default.
1.72_01 2018-04-20T09:42:39+02:00 (cdd5c85 => abeltje)
- (abeltje, 2 years, 1 month ago) Autocommit for distribution Test::Smoke
1.72_01 (test)
- (abeltje, 2 years, 1 month ago) Make more test parallisable.
- Move the testing-directories from 't' to File::Temp::tempdir().
- (abeltje, 2 years, 1 month ago) Less replication of static data.
- (abeltje, 2 years, 1 month ago) Solve
https://github.com/abeltje/Test-Smoke/pull/37
- I don't like using ENVironment vars for legitimate settings in the
- software, so I'd rather use the configfile for that.
- Add a question in configsmoke.pl
1.72 2018-04-22T13:35:26+03:00 (7f9889a => Alexandr Ciornii)
- (Alexandr Ciornii, 2 years, 1 month ago) GetErrorMode requires Windows
Vista, skip test on earlier versions
1.71_01 2017-05-22T21:55:58+02:00 (8e135a5 => abeltje)
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.71_01
(test)
- (Nigel Horne, 2 years, 6 months ago) Better error message to help
diagnose what's wrong
- (James E Keenan, 2 years, 3 months ago) Correct spelling error.
- (abeltje, 2 years, 3 months ago) Merge branch 'more-typo-20170514' of
git://github.com/jkeenan/Test-Smoke into jkeenan-more-typo-20170514
- (abeltje, 2 years, 3 months ago) Merge branch
'jkeenan-more-typo-20170514' into bugfix/github_pullrequests
- (abeltje, 2 years, 3 months ago) Merge branch 'nigelhorne-master' into
bugfix/github_pullrequests
- (abeltje, 2 years, 3 months ago) Merge branch 'jkeenan-typo-20180303'
into bugfix/github_pullrequests
1.71 2017-05-14T13:18:36+02:00 (7f2b993 => abeltje)
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.71
(minor)
- (abeltje, 3 years ago) Reorganise directory structures...
- Change `use lib ...` statements
- (James E Keenan, 3 years ago) Correct typo in Test::Smoke::Syncer::Git.
- (abeltje, 3 years ago) Merge branch 'feature/no_dot_in_at_inc'
- (abeltje, 3 years ago) Fix typo's and (extra)test logic
1.70_12 2017-05-14T12:15:14+02:00 (eb7c599 => abeltje)
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.70_12
(test)
- (abeltje, 3 years ago) Add tsreport.pl to list of scripts.
1.70_11 2017-05-12T18:14:37-04:00 (8191c13 => James E Keenan)
- (James E Keenan, 3 years ago) Correct multiple typos.
- Also: some grammatical corrections and improvements in text flow.
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.70_12
(test)
- (abeltje, 3 years ago) Add tsreport.pl to list of scripts.
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.71
(minor)
- (abeltje, 3 years ago) Reorganise directory structures...
- Change `use lib ...` statements
- (abeltje, 3 years ago) Fix typo's and (extra)test logic
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.71_01
(test)
- (James E Keenan, 3 years ago) Correct typo in Test::Smoke::Syncer::Git.
- (Nigel Horne, 2 years, 6 months ago) Better error message to help
diagnose what's wrong
- (James E Keenan, 2 years, 3 months ago) Correct spelling error.
- (abeltje, 2 years, 3 months ago) Autocommit for distribution Test::Smoke
1.72 (minor)
- (abeltje, 2 years, 1 month ago) Fix another victim of 'No-dot-in-at-inc'
- We have the absolute path to the config-file, use that so 'require'
- doesn't have to loop over @INC to find the file.
- (abeltje, 2 years, 1 month ago) Don't use a 'fallback' JSON.pm
- We now just call it 'Test::Smoke::Util::LoadAJSON' and have it
export
- 'encode_json' en 'decode_json' that's all we need.
- (abeltje, 2 years, 1 month ago) First try to run the tests in parallel
- For this to work we need all the activity to move from 't/' to a
- temporary directory.
1.70_10 2017-05-13T15:57:58+02:00 (153b0a1 => abeltje)
- (abeltje, 3 years ago) Merge branch 'rt/39138'
- (abeltje, 3 years ago) Fix get_avail_w32compilers() by Steve Hay:
- Test-Smoke-1.42 fails to detect the ccversion for my MSVC++
- installations, which all reside under "C:\Program Files\...". It
tries
- to run a command like
- "$map{ $CC }->{ccbin}" --version 2>&1
- but the 'ccbin' there comes from whereis() and is already
double-quoted
- if it contains spaces, which causes an error like
- '""C:\Program' is not recognized as an internal or external command,
- operable program or batch file.
- The attached patch fixes this.
- https://rt.cpan.org/Ticket/Display.html?id=54542
- (abeltje, 3 years ago) Handle 'development-releases' of Test::Harness in
core
- Sometimes a "_nm" release of Test::Harness in blead, we need to deal
- with it. eval("$version") seems the easiest way.
1.70_09 2017-05-12T18:14:37-04:00 (70c7c73 => James E Keenan)
- (James E Keenan, 3 years ago) Correct multiple typos.
- Also: some grammatical corrections and improvements in text flow.
- (abeltje, 3 years ago) Fix test syncer_rsync.t for Windows
- (Cygwin)rsync doesn't understand Windows-paths (C:\Some\Path) but it
handles UNC-paths (//localhost/C$/Some/Path), so we fix the test.
- Left the actual code unchanged, as we normally rsync from a remote
path.
1.70_07 2017-03-21T18:53:08+01:00 (dd9947a => abeltje)
- (abeltje, 3 years, 2 months ago) Autocommit for distribution Test::Smoke
1.70_07 (same)
- (James E Keenan, 3 years, 1 month ago) Fix compilation error.
- For: https://rt.cpan.org/Ticket/Display.html?id=121283
- (abeltje, 3 years ago) Merge branch 'jkeenan-rt-121283-sendrpt-pl' into
pr/sndrpt.pl
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.70_08
(test)
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.70_09
(test)
- (abeltje, 3 years ago) Autocommit for distribution Test::Smoke 1.70_08
(test)
- (abeltje, 3 years ago) Try to resolve RT-120008 (sync with git)
- removed the `git pull` command and replaced with `git reset --hard
- origin/$branch` as advised by Yves.
1.70_06 2017-03-06T19:48:10+01:00 (293dc07 => abeltje)
- (abeltje, 3 years, 2 months ago) Autocommit for distribution Test::Smoke
1.70_06 (same)
- (H.Merijn Brand - Tux, 4 years, 1 month ago) Replace
Test::Smoke::SysInfo with System::Info
- (H.Merijn Brand - Tux, 3 years, 2 months ago) Fix cpuinfo test results
(based on System::Info)
- (abeltje, 3 years, 2 months ago) Remove tests, they moved to
System::Info also.
- (abeltje, 3 years, 2 months ago) Merge branch 'System-Info'
1.70_05 2017-01-30T22:45:55+01:00 (0c3df38 => abeltje)
- (abeltje, 3 years, 4 months ago) Autocommit for distribution Test::Smoke
1.70_05
- (James E Keenan, 3 years, 3 months ago) Correct one typo.
- (abeltje, 3 years, 3 months ago) Merge branch 'jkeenan-one-typo'
- (Andrew Fresh, 3 years, 3 months ago) Tests to get_patch from
git_version.h
- Because the code supposedly supports that, but it doesn't work.
- (Andrew Fresh, 3 years, 3 months ago) Return arrayref as expected from
get_patch()
- Even when we read the version from git_version.h
- (James E Keenan, 3 years, 3 months ago) Correct one typo.
- (H.Merijn Brand, 3 years, 2 months ago) Merge pull request #29 from
jkeenan/faq-spelling-20170303
- Correct one typo.
- (H.Merijn Brand, 3 years, 2 months ago) Merge pull request #27 from
jkeenan/one-typo
- Correct one typo.
- (abeltje, 3 years, 2 months ago) Merge branch 'master' of
https://github.com/afresh1/Test-Smoke into afresh1-master
- (abeltje, 3 years, 2 months ago) Merge branch 'afresh1-master'
- (abeltje, 3 years, 2 months ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- (abeltje, 3 years, 2 months ago) Use annotated tags
1.70_04 2017-01-30T22:08:49+01:00 (e956e35 => abeltje)
- (abeltje, 3 years, 4 months ago) Autocommit for distribution Test::Smoke
1.70_04
- (abeltje, 3 years, 4 months ago) Merge branch
'dcollins/normalize_testname' of https://github.com/dcollinsn/Test-Smoke
into dcollinsn-dcollins/normalize_testname
1.70_03 2017-01-30T22:06:31+01:00 (a655fa3 => abeltje)
- (abeltje, 3 years, 4 months ago) Autocommit for distribution Test::Smoke
1.70_03
- (abeltje, 3 years, 4 months ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
1.70_02 2016-05-22T13:07:39+02:00 (47f479f => abeltje)
- (abeltje, 4 years ago) Autocommit for distribution Test::Smoke 1.70_02
(t)
- (H.Merijn Brand - Tux, 3 years, 8 months ago) Note DISTRIB_RELEASE in
SysInfo
- (Also available in System::Info)
- (H.Merijn Brand - Tux, 3 years, 8 months ago) Without parens
- (H.Merijn Brand - Tux, 3 years, 8 months ago) In Tumbleweed VERSION_ID
is the most recent tag
- ANSI_COLOR => '0;32',
- BUG_REPORT_URL => 'https://bugs.opensuse.org',
- CPE_NAME => 'cpe:/o:opensuse:tumbleweed:20160913',
- DISTRIB_CODENAME => '',
- DISTRIB_DESCRIPTION => 'openSUSE Tumbleweed',
- DISTRIB_ID => 'openSUSE Tumbleweed',
- DISTRIB_RELEASE => 20160901,
- HOME_URL => 'https://www.opensuse.org/',
- ID => 'opensuse',
- ID_LIKE => 'suse',
- LSB_VERSION =>
'core-2.0-noarch:core-3.2-noarch:core-4.0-noarch:core-2.0-x86_64:core-3.2-x86_64:core-4.0-x86_64',
- NAME => 'openSUSE Tumbleweed',
- PRETTY_NAME => 'openSUSE Tumbleweed',
- VERSION_ID => 20160913,
- Welcome to openSUSE Tumbleweed 20160913 - Kernel \\r (\\l).
- (Dan Collins, 3 years, 7 months ago) RT #118488: Proper normalization
for tests in cpan/, dist
- There is a function that is intended to transform from the
"stripped"
- test name (without leading ../ or trailing .t) to a usable relative
- path. That function prepends '../t/' to tests, unless their name
begins
- with ext/ or lib/, in which case it prepends only '../'. This patch
- adds cpan/ and dist/ to the list of special cases.
- (James E Keenan, 3 years, 4 months ago) Correct spelling errors.
- (H.Merijn Brand, 3 years, 4 months ago) Merge pull request #25 from
jkeenan/correct-spelling
- Correct spelling errors.
- (abeltje, 3 years, 4 months ago) Rsync from a git-repository should run
Porting/make_dot_patch.pl
- Pullrequest 18: https://github.com/abeltje/Test-Smoke/pull/18
- , implemented in a more general way (imo)
- - typo in configsmoke.pl
- (H.Merijn Brand - Tux, 3 years, 8 months ago) Note DISTRIB_RELEASE in
SysInfo
- (Also available in System::Info)
- (H.Merijn Brand - Tux, 3 years, 8 months ago) Without parens
- (H.Merijn Brand - Tux, 3 years, 8 months ago) In Tumbleweed VERSION_ID
is the most recent tag
- ANSI_COLOR => '0;32',
- BUG_REPORT_URL => 'https://bugs.opensuse.org',
- CPE_NAME => 'cpe:/o:opensuse:tumbleweed:20160913',
- DISTRIB_CODENAME => '',
- DISTRIB_DESCRIPTION => 'openSUSE Tumbleweed',
- DISTRIB_ID => 'openSUSE Tumbleweed',
- DISTRIB_RELEASE => 20160901,
- HOME_URL => 'https://www.opensuse.org/',
- ID => 'opensuse',
- ID_LIKE => 'suse',
- LSB_VERSION =>
'core-2.0-noarch:core-3.2-noarch:core-4.0-noarch:core-2.0-x86_64:core-3.2-x86_64:core-4.0-x86_64',
- NAME => 'openSUSE Tumbleweed',
- PRETTY_NAME => 'openSUSE Tumbleweed',
- VERSION_ID => 20160913,
- Welcome to openSUSE Tumbleweed 20160913 - Kernel \\r (\\l).
- (James E Keenan, 3 years, 4 months ago) Correct spelling errors.
1.70_01 2016-05-04T00:19:12+02:00 (eca7717 => abeltje)
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test::Smoke
1.70_01 (test)
- (H.Merijn Brand - Tux, 4 years ago) Skip testing git that does not
support "git init folder"
- There might be a higher bound than this, but at least git-1.6.4.2
does
- NOT support this syntax
- usage: git init [-q | --quiet] [--bare]
[--template=<template-directory>] [--shared[=<permissions>]]
- (Andy Grundman, 4 years ago) Split arguments that might be combined into
one string, such as the rsync default '-az --delete'.
- (Andy Grundman, 4 years ago) Revert previous change, breaks args where
spaces are expected
- (Andy Grundman, 4 years ago) Split rsync arguments that are combined
into one string, such as the default '-az --delete'.
- (abeltje, 4 years ago) Rework of Andy Grundman's patch to split rsync
options
- Use shellwords($args) rather than split(" ", $args) to split the
- configured options to rsync(1)
- Thanks Andy!
1.70 2016-04-24T12:57:52+01:00 (6197f5b => abeltje)
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test::Smoke
1.70 (minor)
- (abeltje, 4 years, 1 month ago) Add versions to all the new modules
- (H.Merijn Brand - Tux, 4 years, 1 month ago) Spelling error
- (abeltje, 4 years, 1 month ago) Resolve a backward incompatibilty
- In pre 1.70 Test::Smoke 'sync_type' was the way to specify what sync
- method to use. In 1.70 this became 'syncer', now switched back to
- 'sync_type'.
1.61_15 2016-04-23T09:51:00+01:00 (6b27c08 => abeltje)
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test::Smoke
1.61_15 (same)
- (H.Merijn Brand - Tux, 4 years, 1 month ago) clang = gcc
- https://github.com/abeltje/Test-Smoke/issues/2
- While you are at it, maybe also:
- $cc = 'gcc' if $cc eq 'clang';
- (abeltje, 4 years, 1 month ago) NAME in WriteMakefile() must be
packagename
- (H.Merijn Brand - Tux, 4 years, 1 month ago) SI for NetBSD-7.99.4
- (H.Merijn Brand - Tux, 4 years, 1 month ago) \s != \d
- (abeltje, 4 years, 1 month ago) Merge branch
'pr/faq_correction_rt_94329' of
https://github.com/paultcochrane/Test-Smoke into Belin2015_Aftermath
- (abeltje, 4 years, 1 month ago) Merge branch
'pr/sendrpt_error_msg_fixes' of
https://github.com/paultcochrane/Test-Smoke into Belin2015_Aftermath
- (abeltje, 4 years, 1 month ago) Merge branch 'Belin2015_Aftermath' of
github.com:abeltje/Test-Smoke into Belin2015_Aftermath
- (abeltje, 4 years, 1 month ago) Merge remote-tracking branch
'origin/clang-2014' into Belin2015_Aftermath
- (abeltje, 4 years, 1 month ago) Merge remote-tracking branch
'origin/si-netbsd7994' into Belin2015_Aftermath
- (abeltje, 4 years, 1 month ago) Fix MANIFEST after merge of
origin/si-netbsd7994
- (H.Merijn Brand - Tux, 4 years, 1 month ago) CPU type is unknown on a
virtualized Darwin
1.61_14 2016-04-23T09:48:59+01:00 (8600318 => abeltje)
- (abeltje, 4 years, 1 month ago) Merge upstream
1.61_13 2016-04-22T07:22:51+01:00 (c9ab06f => abeltje)
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test-Smoke
1.61_13
- (abeltje, 4 years, 1 month ago) confess() on failing decode of restult
from report-post
- Some platforms (Mac, but not mine) have a problem in the poster-post
- test. Added a way to find the problem.
1.61_12 2015-12-21T14:43:04+01:00 (2e4aa95 => H.Merijn Brand - Tux)
- (H.Merijn Brand - Tux, 4 years, 5 months ago) Prevent distribution code
name appearing twice in description
- [openSUSE Tumbleweed (20151124) (x86_64) (Tumbleweed)]
- =>
- [openSUSE Tumbleweed (20151124) (x86_64)]
- (H.Merijn Brand - Tux, 4 years, 5 months ago) still want the version
though
- (H.Merijn Brand - Tux, 4 years, 5 months ago) Comment: two more
.etc/issue lines
- (abeltje, 4 years, 1 month ago) Add -DGCCWRAPV for Win32 configuration
- Also make Win32 log with gmtime() and Z(ulu)
- (abeltje, 4 years, 1 month ago) Merge branch 'Belin2015_Aftermath' of
ssh://github.com/abeltje/Test-Smoke into Belin2015_Aftermath
1.61_11 2015-05-31T12:26:56+02:00 (505f078 => abeltje)
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_11
- (abeltje, 5 years ago) BUGFIX: my Windows doesn't support strftime("%T")
- On strawberry it seems POSIX::strftime() has some issues:
- %z acts like %Z and %T doesn't work
- (abeltje, 5 years ago) ThinkoFIX: Set the correct dependency
- For the "browser"-dependency we picked the wrong (and/or)
- (abeltje, 5 years ago) MergeFIX: restore MANIFEST
- (abeltje, 5 years ago) BUGFIX: fix
a199fafaadf08a1c94c1a1a27f1732269afc0b33
1.61_10 2015-05-31T11:44:01+02:00 (0446a2e => abeltje)
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_10
- (abeltje, 5 years ago) TestFIX: another path in a test that failed on
MSWin32
1.61_09 2015-05-24T12:16:03+02:00 (2936dc8 => abeltje)
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_09
- (abeltje, 5 years ago) Merge remote-tracking branch 'origin/si-centos7'
into Belin2015_Aftermath
- (abeltje, 5 years ago) Merge remote-tracking branch 'origin/si-dsm-5.2'
into Belin2015_Aftermath
- (abeltje, 5 years ago) FIX: MANIFEST (new files)
- (abeltje, 5 years ago) Fix skip_tests
- The 'skip_tests' argument needs to be passed to
Test::Smoke::App::RunSmoke
1.61_08 2015-05-05T11:27:34+02:00 (0dd7e3e => Abe Timmerman)
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_08
- (H.Merijn Brand - Tux, 5 years ago) Add DSM-5.2
- (abeltje, 5 years ago) TestFixes for fallback.pm and MSWin32
- Like the 'use fallback' test, the 'no fallback' test now tests what
it
- actually does.
- MSWin32 had failing tests with (back-)slashes in file paths
- Makefile.PL: Add installed modules to the dependencies.
1.61_07 2015-04-22T09:52:39+02:00 (5a98411 => Abe Timmerman)
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_07
- (H.Merijn Brand - Tux, 5 years ago) SysInfo (CentOS 7.1)
- (Abe Timmerman, 5 years ago) TestFix: different approach
- We only need to test that the fallback directories are at the end of
- @INC, not interested in the rest of @INC.
- (Abe Timmerman, 5 years ago) TestFIX: problem with IPv6
- It lookes like HTTP::Daemon->url resolves back to IPv6 on my
machine,
- and the client gets a 'Connection refused', so now we replace the
- host-name with 127.0.0.1, that seems to work for the moment. See
what
- CPANtesters make of that.
1.61_06 2015-04-20T17:01:56+02:00 (41a26a3 => Abe Timmerman)
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_06
- (Abe Timmerman, 5 years ago) Test FIX: fix failing tests
- The fallback-test calculated the wrong result @inc.
- The logging-test assumed the wrong things about strftime(),
timezones
- cannot be "manipulated", now we recalculate the prefix in the test.
1.61_05 2015-04-20T11:19:23+02:00 (8400ede => Abe Timmerman)
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_05
- (Abe Timmerman, 5 years ago) BUG FIX: strftime %F %T doesn't work
everywhere :(
- At least Windows (and old HP-UX partially) do not undstand.
- Change to: %Y-%m-%d %H:%M:%S
- (Abe Timmerman, 5 years ago) More fixing of MANIFEST and tests
- Another file, not caught by the manifest-test, added
- Tux fixed a longtime test-bug for sysinfo_proc.t where the generated
- GLOBref-names weren't unique within the test.
- Removed the locale setting/restoring where we don't need it.
1.61_04 2015-04-20T07:11:21+02:00 (c9c7f50 => Abe Timmerman)
- (Abe Timmerman, 5 years ago) BUGFIX: forgot to ship 2 files.
- Thanks to CPANTesters we found that we forgot to ship 2 files from
the
- fake source-tree
- (Abe Timmerman, 5 years ago) FIX BUG: Tests with logging in different TZ
- Machines not configured in CEST/CET, would fail tests with explicit
- logging, because of the timezone. We have disabled the timestamp-tag
for
- the normal tests. The tests for the logging Module now fix the
timezone
- at UTC
- (Abe Timmerman, 5 years ago) Test FIX: Do not rely on textual $!, use
numbers
- Textual $! is dependent on locale settings, use numerical context.
- "No such file or directory" => 2
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_05
- (Abe Timmerman, 5 years ago) BUG FIX: strftime %F %T doesn't work
everywhere :(
- At least Windows (and old HP-UX partially) do not undstand.
- Change to: %Y-%m-%d %H:%M:%S
- (Abe Timmerman, 5 years ago) More fixing of MANIFEST and tests
- Another file, not caught by the manifest-test, added
- Tux fixed a longtime test-bug for sysinfo_proc.t where the generated
- GLOBref-names weren't unique within the test.
- Removed the locale setting/restoring where we don't need it.
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_06
- (Abe Timmerman, 5 years ago) Test FIX: fix failing tests
- The fallback-test calculated the wrong result @inc.
- The logging-test assumed the wrong things about strftime(),
timezones
- cannot be "manipulated", now we recalculate the prefix in the test.
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_07
- (H.Merijn Brand - Tux, 5 years ago) SysInfo (CentOS 7.1)
- (Abe Timmerman, 5 years ago) TestFix: different approach
- We only need to test that the fallback directories are at the end of
- @INC, not interested in the rest of @INC.
- (Abe Timmerman, 5 years ago) TestFIX: problem with IPv6
- It lookes like HTTP::Daemon->url resolves back to IPv6 on my
machine,
- and the client gets a 'Connection refused', so now we replace the
- host-name with 127.0.0.1, that seems to work for the moment. See
what
- CPANtesters make of that.
- (Abe Timmerman, 5 years ago) Autocommit for distribution Test::Smoke
1.61_08
- (H.Merijn Brand - Tux, 5 years ago) Add DSM-5.2
- (abeltje, 5 years ago) TestFixes for fallback.pm and MSWin32
- Like the 'use fallback' test, the 'no fallback' test now tests what
it
- actually does.
- MSWin32 had failing tests with (back-)slashes in file paths
- Makefile.PL: Add installed modules to the dependencies.
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_09
- (abeltje, 5 years ago) FIX: MANIFEST (new files)
- (abeltje, 5 years ago) Fix skip_tests
- The 'skip_tests' argument needs to be passed to
Test::Smoke::App::RunSmoke
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_10
- (abeltje, 5 years ago) TestFIX: another path in a test that failed on
MSWin32
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_11
- (abeltje, 5 years ago) BUGFIX: my Windows doesn't support strftime("%T")
- On strawberry it seems POSIX::strftime() has some issues:
- %z acts like %Z and %T doesn't work
- (abeltje, 5 years ago) ThinkoFIX: Set the correct dependency
- For the "browser"-dependency we picked the wrong (and/or)
- (abeltje, 5 years ago) MergeFIX: restore MANIFEST
- (abeltje, 5 years ago) BUGFIX: fix
a199fafaadf08a1c94c1a1a27f1732269afc0b33
- (abeltje, 5 years ago) Autocommit for distribution Test::Smoke 1.61_12
- (H.Merijn Brand - Tux, 4 years, 8 months ago) Add Redhat Enterprise
Workstation 6.6 sysinfo
- (H.Merijn Brand - Tux, 4 years, 8 months ago) fix get-lsb output
- (H.Merijn Brand - Tux, 4 years, 5 months ago) Prevent distribution code
name appearing twice in description
- [openSUSE Tumbleweed (20151124) (x86_64) (Tumbleweed)]
- =>
- [openSUSE Tumbleweed (20151124) (x86_64)]
- (H.Merijn Brand - Tux, 4 years, 5 months ago) still want the version
though
- (H.Merijn Brand - Tux, 4 years, 5 months ago) Comment: two more
.etc/issue lines
- (H.Merijn Brand - Tux, 4 years, 3 months ago) Add SysInfo for OpenSUSE
Leap
- (abeltje, 5 years ago) FIX: MANIFEST (new files)
- (abeltje, 4 years, 1 month ago) Add -DGCCWRAPV for Win32 configuration
- Also make Win32 log with gmtime() and Z(ulu)
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test-Smoke
1.61_13
- (abeltje, 4 years, 1 month ago) confess() on failing decode of restult
from report-post
- Some platforms (Mac, but not mine) have a problem in the poster-post
- test. Added a way to find the problem.
- (abeltje, 4 years, 1 month ago) Autocommit for distribution Test::Smoke
1.61_14 (same)
- (abeltje, 4 years, 1 month ago) Remove trailing whitespace
- (abeltje, 4 years, 1 month ago) Remove svn $Id$ keywords
- (abeltje, 4 years, 1 month ago) Fix faulty test (MSWin32)
- (abeltje, 4 years, 1 month ago) More debug data for poster->post
- (abeltje, 4 years, 1 month ago) Fix MANIFEST after merging all the
SysInfo branches from Tux
1.61_03 2014-08-22T14:39:08+03:00 (9ba91d6 => Abe Timmerman)
- (Abe Timmerman, 6 years ago) Autocommit for distribution Test::Smoke
1.61_03
- (H.Merijn Brand - Tux, 6 years ago) Add CentOS-6.5 to distname checks
(boring)
- (H.Merijn Brand - Tux, 6 years ago) Add OpenSUSE 13.2 (Harlequin)
- (Paul Cochrane, 6 years ago) Correcting FAQ as per RT#94329
- This change merely adds the extra "a" needed to make the
introductory
- sentence after the "What is Text::Smoke?" heading grammatically
correct.
- This change would also thus close RT#94329.
- (Paul Cochrane, 6 years ago) Correcting typo in sendrpt error message
- (Paul Cochrane, 6 years ago) Capitalising JSON in error message for
consistency
- (H.Merijn Brand - Tux, 5 years ago) Add test and small subst for RHEL
4.x distname
- (H.Merijn Brand - Tux, 5 years ago) extract subversion of OS (wheezy) in
SysInfo
- (H.Merijn Brand - Tux, 5 years ago) unTABify (to make Abe happ{y|ier}
- (H.Merijn Brand - Tux, 5 years ago) Add Oracle Linux Server 7.0
- (H.Merijn Brand - Tux, 5 years ago) Add dsm-5.1
- (H.Merijn Brand - Tux, 5 years ago) Added distcheck for Debian 8.0
(jessie)
- (H.Merijn Brand - Tux, 5 years ago) Add distcheck for centos-6.6
- (H.Merijn Brand - Tux, 5 years ago) notice *folders* in release info
- Most files are - both on SUSE and CentOS - empty in
/etc/lsb-release.d/
- but things might change
- (H.Merijn Brand - Tux, 5 years ago) Add openSUSE 11.4 and more
consistent nickname reporting
- openSUSE 11.2 "Emerald" => openSUSE 11.2 (Emerald)
- openSUSE 11.3 "Teal" => openSUSE 11.3 (Teal)
- use the OS name from welcome if it *contains* the part of the distro
- file*name* that was used by default
- And yes, I found an old openSUSE 11.4 server that was still used in
- production. :/
- (Paul Cochrane, 6 years ago) Correcting typo in sendrpt error message
- (Paul Cochrane, 6 years ago) Capitalising JSON in error message for
consistency
- (Abe Timmerman, 5 years ago) Fixes for the new tsapps architecture
- (Abe Timmerman, 5 years ago) Berlin2015: Test::Smoke 1.71 to be
- Several bugfixes, whitespace, refactoring, more testing
1.61_02 2013-05-31T21:33:39+02:00 (4766d1a => abeltje)
- (abeltje, 7 years ago) Autocommit for distribution Test::Smoke 1.61_02
- (abeltje, 7 years ago) Push the tags to github.
- (Tony Cook, 7 years ago) perl 5.18 doesn't produce "syntax error", allow
for that
- It instead produces:
- Unknown regexp modifier "/b" at smokeme.config line 1, at end of
line
- Unknown regexp modifier "/n" at smokeme.config line 1, at end of
line
- (abeltje, 7 years ago) Introduce fallback.pm (like lib.pm, but do push()
not unshift()) and a JSON.pm fallback wrapper for JSON::PP.
- (abeltje, 7 years ago) Make sure configsmoke.pl can find itself (and
fallback.pm)
- (abeltje, 7 years ago) Add version.
- (abeltje, 7 years ago) make the test "pass" again.
- (abeltje, 7 years ago) Add the reporter applet.
- (abeltje, 7 years ago) Fix the autocommit.
- (H.Merijn Brand - Tux, 7 years ago) Sync forgotten sysinfo branch with
master and added Synology
- NASynology:perl/Test-Smoke-git 509 > perl -Ilib sysinfo.pl
- Hostname : NASynology
- Number of CPU's : 1
- Processor type : armv5tel
- Processor description: Feroceon 88FR131 rev 1 (v5l) (2000 MHz)
- OS and version : linux - 2.6.32.12 [DSM 4.3-3810]
- (H.Merijn Brand - Tux, 7 years ago) OpenSUSE 13.1 released
- I dug up some old /etc/issue strings from the backup.
- I like lists like this to be complete :)
- (Abe Timmerman, 6 years ago) White space fixes.
- (Abe Timmerman, 6 years ago) Create a separate flag 'regen' to (un)set
RegenHeaders after patching.
- (Abe Timmerman, 6 years ago) Make all the http-poster modules roughly do
the same thing.
- (Abe Timmerman, 6 years ago) Add extra decoding layer for 'iso-8859-1'
and a warning for when the file could not be decoded.
- (Abe Timmerman, 6 years ago) Empty the user_note attribute if none could
be found.
- (H.Merijn Brand - Tux, 6 years ago) Deal with non-fatal important
messages
- (Abe Timmerman, 6 years ago) First day of fixes:
- - Have Makefile.PL prompt for installation-directory
- - Tiny hint about configsmoke
- - Tiny hint about where to start reading
- - only try to decode_json the content of the response
(Poster::LWP_UserAgent)
- - implement and test -UWIN64 for Configure_win32()
- - handle slashes stuff on windows for fallback.pm test
- -
- (Abe Timmerman, 6 years ago) White space fixes.
- (Abe Timmerman, 6 years ago) Create a separate flag 'regen' to (un)set
RegenHeaders after patching.
- (Abe Timmerman, 6 years ago) Make all the http-poster modules roughly do
the same thing.
- (Abe Timmerman, 6 years ago) Add extra decoding layer for 'iso-8859-1'
and a warning for when the file could not be decoded.
- (Abe Timmerman, 6 years ago) Empty the user_note attribute if none could
be found.
- (Abe Timmerman, 6 years ago) First day of fixes:
- - Have Makefile.PL prompt for installation-directory
- - Tiny hint about configsmoke
- - Tiny hint about where to start reading
- - only try to decode_json the content of the response
(Poster::LWP_UserAgent)
- - implement and test -UWIN64 for Configure_win32()
- - handle slashes stuff on windows for fallback.pm test
- -
- (Abe Timmerman, 6 years ago) Merge branch 'master' into Lyon2014
- (H.Merijn Brand - Tux, 6 years ago) Inspect *all* release/version files
on /etc
- Do not skip lsb-release, but just read all known files that we know
to
- ddefine info about the OS/release. Prefer XXX=blah over XXX. First
come
- will be used.
- Next step is to collect /etc folders with the files we use for this
on
- a per-release occurence
- (H.Merijn Brand - Tux, 6 years ago) etc files + collector
- (H.Merijn Brand - Tux, 6 years ago) Test distribution names
- (Abe Timmerman, 6 years ago) Add distribution files for debian (for
testing SysInfo::Linux)
- (Abe Timmerman, 6 years ago) Set the expected distnames for
debian-stables.
- (H.Merijn Brand - Tux, 6 years ago) More distname
- (H.Merijn Brand - Tux, 6 years ago) ease debugging (for new distros)
- (H.Merijn Brand - Tux, 6 years ago) add Johan's smoke logs
- (H.Merijn Brand - Tux, 6 years ago) More distro's give even more info :)
- Prefer DISTRIB_DESCRIPTION (+ DISTRIB_CODENAME) over PRETTY_NAME
- (H.Merijn Brand - Tux, 6 years ago) More dist info
- (H.Merijn Brand - Tux, 6 years ago) Move Johan's logs to the sandox
- They currently do not add any testing value
- (H.Merijn Brand - Tux, 6 years ago) disttest ubuntu 13.04
- (Abe Timmerman, 6 years ago) Fix the JSON fallback/factory class and
tests for it.
- (Abe Timmerman, 6 years ago) Fix some test issues:
- - Document constants
- - Suppress output from git clone
- - Add comment to a test
- (Abe Timmerman, 6 years ago) Merge branch 'Lyon2014'
- (H.Merijn Brand - Tux, 6 years ago) Add meta-info for repository
- BTW hccnet.nl is long dead and gone
- (Abe Timmerman, 6 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- (H.Merijn Brand - Tux, 6 years ago) Fix synology distname detection
- (Abe Timmerman, 6 years ago) Provide more (up to date) information for
Windows, fix tests.
- (Abe Timmerman, 6 years ago) Fix check for usable JSON module.
- (Abe Timmerman, 6 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- (abeltje, 6 years ago) Fix checking of ExtUtils::MakeMaker->VERSION
(some people have "_-versions" installed.
- (abeltje, 6 years ago) Fix test for systems that have either JSON::XS or
JSON::PP installed.
- (Abe Timmerman, 6 years ago) Refactor Test::Smoke::Poster->post() for
easier logging.
- (H.Merijn Brand - Tux, 6 years ago) Keep the "wide character" logs
- {"db_error":"Wide character in subroutine entry at
../perl5/lib/perl5//JSON.pm line 171.\n","error":"Unexpected error."}
- => Dancer problem
- (H.Merijn Brand - Tux, 6 years ago) Newer Test::More requires (not
use's) Scalar::Util
- (Abe Timmerman, 6 years ago) Add -vtype switch to influence the type of
version-bump you want.
- (Abe Timmerman, 6 years ago) Small refectornig, read_logfile() is a
utility function, Test::Smoke::Reporter->get_log() is the method.
- (Abe Timmerman, 6 years ago) Rewrite grepccmsg() so it takes the
file-contents rather than the file-name.
- (Abe Timmerman, 6 years ago) Rewrite grepnonfatal() to use the
file-contents rather than the file-name.
- (H.Merijn Brand - Tux, 6 years ago) shorten long name
- Do not use the word "release" in destro name
- (H.Merijn Brand - Tux, 6 years ago) typo in verbose tests
- (H.Merijn Brand - Tux, 6 years ago) add RHEL server distro names
- (Abe Timmerman, 6 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- (H.Merijn Brand - Tux, 6 years ago) Add sysinfo for RHEL-6.4
- (H.Merijn Brand - Tux, 6 years ago) Oracle Linux Server
- (H.Merijn Brand - Tux, 6 years ago) DSM-5.0 & DSM-4.3
- With DSM, dist-detection will find two files named VERSION
- The first it finds is the newest. Previous test had the wrong
- stored in t/etc/ds213-4.3
- (H.Merijn Brand - Tux, 6 years ago) tests for DSM called dsm, not ds213
- (H.Merijn Brand - Tux, 6 years ago) NetBSD release info
- they *only* have /etc/release
- I don't know if that is valid for all NetBSD releases
- (H.Merijn Brand, 6 years ago) Forgot to rename DSM dist files in
MANIFEST
- (H.Merijn Brand - Tux, 6 years ago) map g++ warnings to gcc (jhi)
- (H.Merijn Brand - Tux, 6 years ago) The newer gcc:s seem to have also
"note: ..." (jhi)
- (H.Merijn Brand, 6 years ago) Prevent false negatives in CPU speed
report
- (H.Merijn Brand, 6 years ago) no else after return
- (H.Merijn Brand, 6 years ago) Guard against warnings for negative repeat
in pad-length
- RT#96821 - "Negative repeat count does nothing" warnings
- https://rt.cpan.org/Ticket/Display.html?id=96821
- Negative repeat count does nothing at
/data/data/home/.cpan/build/Test-Smoke-1.6-sou720/blib/lib/Test/Smoke/Reporter.pm
line 1097.
- (H.Merijn Brand, 6 years ago) We do not want to see failing patch
--version output
- This is exactly why we do the test
- t/patcher.t ...................... 1/41
/data/data/com.pdaxrom.cctools/root/cctools/bin/patch: unrecognized
option '--version'
- BusyBox v1.21.1 (2013-12-08 10:51:29 EET) multi-call binary.
- Usage: patch [OPTIONS] [ORIGFILE [PATCHFILE]]
- -p N Strip N leading components from file names
- -i DIFF Read DIFF instead of stdin
- -R Reverse patch
- -N Ignore already applied patches
- -E Remove output files if they become empty
- (H.Merijn Brand - Tux, 6 years ago) Typo in instruction
- (H.Merijn Brand - Tux, 6 years ago) AIX OS version analysis updated
- As of AIX 5.3/ML05, the new "oslevel -s" will output the OS version
in
- 4 parts: OS version, TL (previous ML), SP and release date
- (H.Merijn Brand - Tux, 6 years ago) Documentation for AIX OS version
- "oslevel -s" output may say the system is older than it actually is.
- It by default reports the most recent consistent level. If a single
- fileset is missing (for example /usr/include files) at the latest
- level, the old level is reported rather than the level of "most" of
- the system.
- $ oslevel -s
- 6100-09-03-1415
- $ oslevel -q -s | head -3
- Known Service Packs
- -------------------
- 6100-09-03-1415
- 6100-09-02-1412
- 6100-09-01-1341
- The RD seems to be important for finding filesets:
- bos:bos.rte.install:6.1.9.16: : :C:F:LPP Install Commands: : : : : :
:0:0:/:1415
- (Abe Timmerman, 6 years ago) Fix nonfatalmessage()
- (abetim, 6 years ago) Pull SysInfo.pm from master.
- (abetim, 6 years ago) Merge remote-tracking branch 'origin/master' into
Lyon2014
- Conflicts:
- lib/Test/Smoke/Reporter.pm
- (abetim, 6 years ago) Add files to the MANIFEST
- (Abe Timmerman, 6 years ago) New machine
1.6 2013-05-06T17:15:26+02:00 (0f0e72f => abeltje)
- (abeltje, 7 years ago) Autocommit for distribution Test::Smoke 1.6
- (abeltje, 7 years ago) Make sure we have 2 digits after the decimal
point (aesthetic).
- (abeltje, 7 years ago) Refactor the mail modules.
- (abeltje, 7 years ago) Refactor the Syncer code.
- (abeltje, 7 years ago) * Refactor the SysInfo code, add support for
Haiku OS.
- (abeltje, 7 years ago) * Rest of the changes for Haiku branch.
- (abeltje, 7 years ago) Add documentation for the new SysInfo modules.
- (abeltje, 7 years ago) Add -test|-t switch for running all the tests
only.
- (abeltje, 7 years ago) Fix long standing bug in the manifest_check code,
where MANIFEST.SKIP entries were not treated as regexen.
- (abeltje, 7 years ago) Add ua_timeout option (LWP::UserAgent timeout),
so I can set it to 0 for my haiku box.
- (abeltje, 7 years ago) Update the Makefile.PL, add dependencies for
MSWin32 and Haiku.
- (abeltje, 7 years ago) Update the Makefile.PL, add dependencies for
MSWin32 and Haiku.
- (abeltje, 7 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- Conflicts:
- Makefile.PL
- (abeltje, 7 years ago) Fix typo, remove '-i' from make args for Haiku
- (abeltje, 7 years ago) Fix the SysInfo/Solaris code
- (abeltje, 7 years ago) Fix the get info from /proc/cpuinfo testcode
- - it will now handle open my $fh, '< /proc/cpuinfo'
- (abeltje, 7 years ago) Add '.git' to the default MANIFEST.SKIP files.
- (abeltje, 7 years ago) Make the diagnostics for smoking from git-repo
better:
- - verbose 1: show command that is run
- - verbose 2: show current path and command output
- (abeltje, 7 years ago) Treat Cygwin as its own os, resolve rt#35613.
- (abeltje, 7 years ago) Add the new SysInfo::Cygwin to the manifest.
- (abeltje, 7 years ago) Fix more dependencies.
- (abeltje, 7 years ago) Start fixing MSWin32 stuff, add option
-DWIN64=undef, dmake/nmake tests..
- (abeltje, 7 years ago) Add -help option with information.
- (abeltje, 7 years ago) Move developer test files around a bit.
- (abeltje, 7 years ago) RT#52022: capture warnings and errors from Intel
C/C++ (TONYC)
- - apply this patch from 2009 already
- (abeltje, 7 years ago) Add framework to create applications for
Test::Smoke.
- (abeltje, 7 years ago) Add mailserver port for MIME::Lite and SendEmail
- (abeltje, 7 years ago) Fix Test::Smoke::App::*; we can now have multiple
attributes with special_options
- (abeltje, 7 years ago) Apple changed the output of systemprofiler
(again), adjust.
- (abeltje, 7 years ago) Apple changed the output of systemprofiler
(again), adjust.
- (abeltje, 7 years ago) Fix Test::Smoke::Util::skip_filter() for new test
output.
- (abeltje, 7 years ago) Fix Test::Smoke::Util::skip_filter() for new test
output.
- (abeltje, 7 years ago) Add more http-posters to CoreSmokeDB and
introduce a seperate Archiver.
- TS::Archiver && TS::App::Archiver && tsarchive.pl
- more posters: HTTP::Tiny && curl
- add log_warn() to TS::App::Base and TS::LogMixin
- add TS::App::RunSmoke && tsrunsmoke.pl
- (abeltje, 7 years ago) Various changes to prepare for 1.61-RC1
- Fix MANIFEST
- AppOption->show_helptext() must only show alts, if there are
any.
- Add some MSWin32 config variables (5.14)
- (abeltje, 7 years ago) Final walk through of the code, fix pod, move the
private testsuite around some more...
- (abeltje, 7 years ago) fix manifest
- (abeltje, 7 years ago) Add some more tests.
- (abeltje, 7 years ago) Move developer test files around a bit.
- (abeltje, 7 years ago) RT#52022: capture warnings and errors from Intel
C/C++ (TONYC)
- - apply this patch from 2009 already
- (abeltje, 7 years ago) Add framework to create applications for
Test::Smoke.
- (abeltje, 7 years ago) Add mailserver port for MIME::Lite and SendEmail
- (abeltje, 7 years ago) Fix Test::Smoke::App::*; we can now have multiple
attributes with special_options
- (abeltje, 7 years ago) Add more http-posters to CoreSmokeDB and
introduce a seperate Archiver.
- TS::Archiver && TS::App::Archiver && tsarchive.pl
- more posters: HTTP::Tiny && curl
- add log_warn() to TS::App::Base and TS::LogMixin
- add TS::App::RunSmoke && tsrunsmoke.pl
- (abeltje, 7 years ago) Various changes to prepare for 1.61-RC1
- Fix MANIFEST
- AppOption->show_helptext() must only show alts, if there are
any.
- Add some MSWin32 config variables (5.14)
- (abeltje, 7 years ago) Final walk through of the code, fix pod, move the
private testsuite around some more...
- (abeltje, 7 years ago) fix manifest
- (abeltje, 7 years ago) Add some more tests.
- (abeltje, 7 years ago) Merge branch 'ts-apps' of
ssh://github.com/abeltje/Test-Smoke into ts-apps
- (abeltje, 7 years ago) Add instantiate tests for the Test::Smoke::App::*
applets.
- (abeltje, 7 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
- (abeltje, 7 years ago) Lets try 1.61-RC1
- (abeltje, 7 years ago) Fix MANIFEST...
- (abeltje, 7 years ago) Fallout of the first testround with 1.61-RC1
- (abeltje, 7 years ago) Fix all the Test::Smoke::Poster::* code that use
Modules.
- (abeltje, 7 years ago) Fix Test::Smoke::App::SmokePerl
- (abeltje, 7 years ago) Make this test a bit saver to run...
- (abeltje, 7 years ago) Fix some more errors.
- use Test::Smoke::SysInfo::Windows->new->os for Windows version
- import of cwd() from Cwd.
- Make LWP::UserAgent the default poster() again.
- (abeltje, 7 years ago) Use the new tssmokeperl.pl
- (abeltje, 7 years ago) Merge branch 'master' of
ssh://github.com/abeltje/Test-Smoke
1.59 2013-05-03T20:03:44+02:00 (e68627e => Abe Timmerman)
- (Abe Timmerman, 7 years ago) Autocommit for distribution Test::Smoke
1.59
- (Abe Timmerman, 7 years ago) Update the Changes file on release (like we
used to).
- Also:
- - remove the old mkdist.sh
- - Remove $Id$ for MANIFEST
- (H.Merijn Brand - Tux, 7 years ago) More accurate SysInfo on Linux
- (H.Merijn Brand - Tux, 7 years ago) More variations (doc only)
- (Abe Timmerman, 7 years ago) Merge branch 'sysinfo' of
ssh://github.com/abeltje/Test-Smoke
- - More accurate SysInfo on Linux
- - More accurate SysInfo on Linux
- (Abe Timmerman, 7 years ago) Fix Test::Smoke::Util::Execute so it will
work on windows aswell.
1.58 2013-05-03T18:08:37+02:00 (d1ee54a => Abe Timmerman)
- (Abe Timmerman, 7 years ago) Last minute fixes for the 1.60 release
- (Abe Timmerman, 7 years ago) Autocommit for distribution of
Test-Smoke-1.58
- (Abe Timmerman, 7 years ago) fix the release script
- (Abe Timmerman, 7 years ago) rename the release script
1.53 2012-06-17T11:36:11+00:00 (ed1a69d => abeltje)
- (abeltje, 8 years ago) * [CHANGE]
- Fix the manifest and re-release.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1374
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1375
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (hmbrand, 8 years ago) Tony's changes
- git-svn-id:
https://source.test-smoke.org/svn/branches/tux-devel@1379
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (hmbrand, 8 years ago) Deal with space inside the set of dots
- git-svn-id:
https://source.test-smoke.org/svn/branches/tux-devel@1380
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (hmbrand, 8 years ago) Be defensive for versions that might not be
present during testing
- git-svn-id:
https://source.test-smoke.org/svn/branches/tux-devel@1381
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (H.Merijn Brand - Tux, 7 years ago) Merijn wants his sandbox (but not in
git)
- (Abe Timmerman, 7 years ago) Add ctags for vim to the ignore list
- (Abe Timmerman, 7 years ago) Add the vim ctags file to the ignore list.
- (Abe Timmerman, 7 years ago) Incorporate the Linux_arm patch from Johan
Vromans
- (H.Merijn Brand - Tux, 7 years ago) Decode log file
- Refactor into reading the logfile always the same way
- (Abe Timmerman, 7 years ago) We need a first file committed
- (Abe Timmerman, 7 years ago) Extend Test::Smoke::Syncer::Git so we can
run 'smokeme' branches.
- (Abe Timmerman, 7 years ago) clean up: remove tabs and exchange =item
with =head2
- (Abe Timmerman, 7 years ago) Fix tests:
- - sysinfo_macos.t => require Test::Smoke::SysInfo (not use)
- - sysinfo_proc.t => remove an untie warning in 5.16
- (Abe Timmerman, 7 years ago) Implement variable position for the
user_note:
- - un_position == 'top' => at the start of the report
- - un_position == <!top> => at the end of the report
- (Abe Timmerman, 7 years ago) Add (git) branch information to the reports
(and database).
- (Abe Timmerman, 7 years ago) Decode log file
- Refactor into reading the logfile always the same way
- Conflicts:
- lib/Test/Smoke/Util.pm
- (Abe Timmerman, 7 years ago) Add support for user_note from
configsmoke.pl and other minor fixes.
- (Abe Timmerman, 7 years ago) Merge branch 'LancasterSmoke' of
ssh://github.com/abeltje/Test-Smoke
- Conflicts:
- lib/Test/Smoke/Util.pm
1.52 2012-06-11T21:01:22+00:00 (dec1033 => abeltje)
- (abeltje, 8 years ago) * [CHANGE]
- - proper release of 1.52
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1372
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1373
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.51 2012-06-11T20:52:54+00:00 (29bb63c => abeltje)
- (abeltje, 8 years ago) * [CHANGE]
- Makefile.PL: add JSON and LWP::UserAgent as dependencies (TonyC)
- smokestatus.pl: change the position the version information is
given (Tux)
- configsmoke.pl: fix the always lagging explicit version, and use
'blead' (thanks to sciurius)
- set new version
- -This line, and those below, will be ignored--
- _M .
- M Makefile.PL
- M smokestatus.pl
- M lib/Test/Smoke.pm
- M configsmoke.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1369
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * mosterd na de maaltijd
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1370
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [PRIVATE]
- fix mkdist.sh docs (one should use -c)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1371
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.50 2012-06-10T11:30:40+00:00 (3314d73 => abeltje)
- (abeltje, 8 years ago) * [CHANGE] set version to 1.50 for release
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1367
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.49_02 2012-04-18T22:27:34+00:00 (b91fc76 => abeltje)
- (abeltje, 8 years ago) * [CHANGE]
- fix version number
- fix get-revision number
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1361
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE]
- fixes in configsmoke:
- - all production versions of perl smoke with perlmaint.cfg
- - all developmnet versions of perl smoke with perlcurrent.cfg
- - various typo's
- fixes in smokeperl
- - a comma got lost/typo thing...
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1362
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE]
- - remove the individual --smokedb option from sendrpt.pl and
smokeperl.pl (and make it disappear from configsmoke.l
- - fix smoke_date in the smokedb-data
- - try to make Test::Smoke::Reporter a bit more compatible with old
perls
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1363
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE] by H.Merijn Brand
- add more version information to smokestatus.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1366
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.44_01 2011-04-14T18:48:45+00:00 (7473b42 => abeltje)
- (abeltje, 9 years ago) * [MERGE] from maint
- This change was integrated into the maint-branch without any
commit-message.
- It makes sure that absolute paths are just that, by using
Cwd::abs_path(), important for symlinks and stuff on windows (but forgot
what).
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1287
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 9 years ago) * [CHANGE] by stsc
- use a glob in the call to tie-handle (helps 5.14.x)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1296
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE] by Steve Hay and Father Chrysostomos
- - rt.cpan.org #75673: Support sendEmail to make it easier emailing
from Win32
- - rt.cpan.org #75681: Clean up leftover temporary file in test
suite
- - rt.cpan.org #63073: Bleadperl 9aa8b00 breaks
ABELTJE/Test-Smoke-1.44
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1302
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [FIX] By Steve Hay
- - rt.cpan.org #75681: Wrongly integrated, corrected
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1305
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE] by Steve Hay
- - A mix of the old and the new, so both Windows and OS X with
symlinks are happy.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1306
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE] by MStevens
- - rt.cpan.org #65647: Minor pod lint
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1311
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [MERGE] from branches/ParisSmoke
- [ 1313] By: hmbrand on 2012-03-30 13:50:06 +0200
- - Move cinfo one level down
- [ 1315] By: hmbrand on 2012-03-30 13:51:39 +0200
- Log: Convert pass/fail lists in reports to lists in hashes
- [ 1316] By: hmbrand on 2012-03-30 16:43:00 +0200
- Log: Complete new report structure
- - Instead of remodeling the parsed report structure, put the
required data in the wanted spot from the start probably making
_post_process completely unneeded in the future.
- [ 1317] By: hmbrand on 2012-03-30 18:34:59 +0200
- Log: Move to database field names and add_missing stuff,
like statistics
- [ 1318] By: hmbrand on 2012-03-30 18:38:12 +0200
- Log: Remove merge conflict, (I hope)
- [ 1319] By: hmbrand on 2012-03-31 09:55:14 +0200
- Log: Keep config args to extract sender/reporter
- [ 1320] By: hmbrand on 2012-03-31 10:27:46 +0200
- Log: rename topmost results to configs
- [ 1321] By: hmbrand on 2012-03-31 10:36:04 +0200
- Log: combine failed + passed lists into failures
- [ 1322] By: hmbrand on 2012-03-31 10:50:41 +0200
- Log: Splat statistic info
- [ 1323] By: hmbrand on 2012-03-31 11:01:08 +0200
- Log: defaults for statistics to prevent no-null
- [ 1324] By: hmbrand on 2012-03-31 11:22:53 +0200
- Log: config => arguments
- [ 1325] By: hmbrand on 2012-03-31 11:34:36 +0200
- Log: split cinfo into cc and ccversion (might be null)
- [ 1326] By: hmbrand on 2012-03-31 11:42:03 +0200
- Log: move the stats back to the correct level
- [ 1327] By: hmbrand on 2012-03-31 11:57:33 +0200
- Log: typo and nullable defaults
- [ 1328] By: hmbrand on 2012-03-31 13:30:06 +0200
- Log: No common_args in JSON export
- [ 1329] By: hmbrand on 2012-03-31 13:33:45 +0200
- Log: patch => perl_id
- [ 1330] By: hmbrand on 2012-03-31 13:54:02 +0200
- Log: drop debug_how
- [ 1331] By: hmbrand on 2012-03-31 15:35:53 +0200
- Log: Do times in portable local time
- [ 1332] By: hmbrand on 2012-03-31 15:35:56 +0200
- Log: split io_env/locale
- [ 1333] By: hmbrand on 2012-03-31 15:36:00 +0200
- Log: use in perl_id what was designed two years ago.
- - Note this will be bogus is just scanning existing
mktest.out files in an empty folder
- [ 1334] By: hmbrand on 2012-03-31 15:36:02 +0200
- Log: don't hide start times behind first start time
- [ 1335] By: hmbrand on 2012-03-31 17:22:18 +0200
- Log: Safe new for c/M/m
- - Tests pass (again)
- [ 1337] By: hmbrand on 2012-04-01 09:38:28 +0200
- Log: Add transport option: still needs docs
- [ 1338] By: hmbrand on 2012-04-01 10:54:06 +0200
- Log: TRANSPORT!
- [ 1339] By: hmbrand on 2012-04-01 10:54:08 +0200
- Log: accept transport_url in sendrpt.pl
- [ 1340] By: hmbrand on 2012-04-01 11:16:08 +0200
- Log: use the content key(word)
- [ 1341] By: hmbrand on 2012-04-01 11:47:58 +0200
- Log: Documentation changes and configuration updates
- [ 1342] By: hmbrand on 2012-04-01 15:27:51 +0200
- Log: Remove leading whitespace in extra
- [ 1343] By: hmbrand on 2012-04-01 15:53:18 +0200
- Log: re-flow
- [ 1344] By: hmbrand on 2012-04-01 16:01:38 +0200
- Log: log*_*file and out*_*file
- [ 1345] By: hmbrand on 2012-04-01 16:50:37 +0200
- Log: Last minute changes. sysinfo cannot have "structs"
- [ 1346] By: hmbrand on 2012-04-03 16:31:07 +0200
- Log: POSIX::strftime ("%F") is not portable, as it requires
C99
- # Note that the format "%F %T %z" returns:
- # Linux: 2012-04-02 10:57:58 +0200
- # HP-UX: April 08:53:32 METDST
- - Correct layout
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1354
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [MERGE] from ParisSmoke branch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1355
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [MERGE] from branch ParisSmoke
- [ 1357] By: hmbrand on 2012-04-13 11:39:10 +0200
- - Prevent duplicate compiler_messages
- - Also filter unwanted messages before "keep"ing them
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1359
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 8 years ago) * [CHANGE]
- Finish Fase 2 of the "Send smoke data to a database" project
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1360
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.43_01 2010-08-29T21:21:59+00:00 (03c59c8 => abeltje)
- (abeltje, 10 years ago) * [CHANGE]
- Update version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1283
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.41_01 2010-01-12T20:58:28+00:00 (eca74da => abeltje)
- (abeltje, 10 years ago) * [CHANGE]
- Merge my changes with Bram's
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1261
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 10 years ago) * [PRIVATE]
- add the contrib/ directory to the ignore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1262
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) Fix failing tests.
- The output now includes 'Non-zero exit status'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1263
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 10 years ago) * [FIX] thanks to Bram
- the new regex for finding the smoke-git-id shouldn't test for
leading TAB,
- these are stripped by Test::Smoke::Util::get_local_patches().
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1264
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) $last and next is not needed. (breaks the parsing
of passed todo tests)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1265
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) Set $! to 0 at the start of the test
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1266
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) [FIX] Update MANIFEST with new files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1270
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 10 years ago) * [CHANGE] merge from the Vienna branch
- Add (simple) support for smoking from a gitrepo
- Update configsmoke for the 5.13
- Some minor fixes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1282
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.37_04 2009-02-02T21:27:38+00:00 (33312ca => abeltje)
- (abeltje, 11 years ago) * [CHANGE] by Merijn
- remove -j[0-9]+ from the make command if it has 'clean' in it.
- bump version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1228
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [CHANGE] by Merijn
- remove -j[0-9]+ from the make command if it has 'clean' in it.
- bump version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1229
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [CHANGE] by Jan Dubois (RT 39314)
- Get system information from the Registry without needing write
access
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1232
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [FIX]
- File::Spec->rel2abs() on windows strips relative elements (like
../) from the path, so as a trick we take the path relative to a peer
directory. (Hysterical raisins)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1233
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [FIX] suggested by Tony Cook (RT 40490)
- We should quote commands that contain a space.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1234
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [FIX]
- Also consider PERL5OPT for the generated startup wrapper scripts.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1240
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [CHANGE] request by Merijn
- Add a noisy C warning to the Test::Smoke::Util::skip_filter
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1245
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 11 years ago) Fixes:
- - String after 'Finished Smoking' can also contain [a-zA-Z] (git id)
- - Fix write_to_file (created the file 1 instead of the actual name)
- - Fix error reporting in set_skip_tests: if a file was succesfully
renamed it reported 'not ok' instead of 'ok' + error message was not
shown
- - Fix set_smoke_patchlevel: the smoke id can contain [a-zA-Z]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1254
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 11 years ago) Add tests for earlier commit.
- In the reporter test 3 different patchlevels:
- - all numeric (perforce patch number)
- - hex numbers: starting with a number (git commit id)
- - hex numbers: starting with a letter (git commit id)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1255
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 11 years ago) [FIX]
- Tests that are skipped in dist/ and cpan/ have to be removed
from MANIFEST
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1256
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 11 years ago) Forgot test for previous fix
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1257
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) Add 'Passed Todo tests' section in the report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1258
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) - Include 'Non-zero exit status' in the output file
- - Include 'Non-zero exit status' in the report
- - If the harness output is not parsed for a test file then add
'test_file...??????' in the failed list
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1259
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (bram, 10 years ago) Copy changes from ts-maint
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1260
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.37_03 2009-01-25T14:32:25+00:00 (f8e4c09 => abeltje)
- (abeltje, 11 years ago) * [CHANGE] use `git describe` info for subject
in reports
- bump version.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1225
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1226
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.37_02 2009-01-11T22:25:01+00:00 (28f2c43 => abeltje)
- (abeltje, 11 years ago) * bump version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1224
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.35_02 2008-12-22T23:34:41+00:00 (9473c2c => abeltje)
- (abeltje, 11 years ago) * [CHANGE]
- implement the new .patch format from git
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1212
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) [CHANGE]
- Adjust the rsync addresses
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1213
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) [PRIVATE]
- add *~ to the ignorelist
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1214
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) [CHANGE]
- Up the version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1215
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) [CHANGE]
- fix the Test::Smoke::REVISION from the git-repo
- Fix the mail subject; use the timestamp as revision
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1216
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [CHANGE] by Bram
- [PATCH] Broken pipe in smokecurrent.log
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1220
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [PRIVATE]
- add the investigate directory to .gitignore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1221
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [PRIVATE]
- git svn create-ignore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1222
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 11 years ago) * [PRIVATE]
- git svn create-ignore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1223
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.35_01 2008-10-02T21:23:05+00:00 (184ee89 => abeltje)
- (abeltje, 12 years ago) * [CHANGE] by Bram
- Make sure that the right harness-parsing routine is configured for
5.10.x with patchlevel >= 33961
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1204
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [SVN]
- Set ignore on TAGS file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1205
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE]
- Fix some outstanding bugs
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1209
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] Thanks TonyC for reporting
- Fix Test::Smoke::Smoker::_normalize_testname()
- ../t is optimized away in some cases...
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1211
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.29_63 2008-08-14T13:03:35+00:00 (6407827 => abeltje)
- (abeltje, 12 years ago) * [CHANGE]
- update version number!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1197
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE]
- Small fixes to help the new develop machine
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1202
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.29_62 2008-05-18T11:20:50+00:00 (d76f3f6 => abeltje)
- (abeltje, 12 years ago) * [CHANGE]
- starting a fix: bump version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1180
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] by Bram
- fix cleanup bug that removed way too many files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1185
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] by H.Merijn Brand
- add HP-UX 11.31 specific information
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1186
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] Many thanks to Bram for his analisys!
- Test::Harness 3.13 changed its output (again) this causes the
bleadsmokes on Windows (and harness-only) to fail to produce a report.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1191
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- Fix broken code from change 1191
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1195
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- update version number!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1196
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.29_61 2008-01-11T12:36:20+00:00 (6739544 => abeltje)
- (abeltje, 12 years ago) * [CHANGE] bug found by Johan Vromans and
H.Merijn Brand
- FIX: interference with '.' in @INC and the build-directory
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1168
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- FIX: issue with reporting cores
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1169
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] by Johan Vromans
- FIX: change_manifest() took away the entry-info, this makes
readdir.t fail
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1171
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- fix undefined warnings for existing but empty '.patch' file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1179
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.29_60 2008-01-03T13:32:28+00:00 (22e1672 => abeltje)
- (abeltje, 12 years ago) * [MERGE] from ts-devel
- [ 1138] By: abeltje on 2007-12-30 11:17:57 +0100
- Log: * [CHANGE]
- MOVE: Mail::Sendmail should not be in the regular
source-tree
- [ 1139] By: abeltje on 2007-12-30 16:27:12 +0100
- Log: * [CHANGE]
- MOVE: configuration-files to a place from which they
will installed
- [ 1140] By: abeltje on 2007-12-30 16:31:50 +0100
- Log: * [CHANGE]
- FIX: adjust @INC for the moved Mail::Sendmail
location
- [ 1143] By: abeltje on 2007-12-30 16:44:22 +0100
- Log: * [CHANGE]
- Try to standardize the Makefile.PL
- [ 1144] By: abeltje on 2007-12-30 16:47:53 +0100
- Log: * [CHANGE]
- FIX: Smoker's parsers for Test::Harness 3
- [ 1145] By: abeltje on 2007-12-31 15:24:04 +0100
- Log: * [CHANGE]
- FIX: finding the default buildconfigs in their new
location
- [ 1146] By: abeltje on 2007-12-31 15:29:13 +0100
- Log: * [CHANGE]
- prepare for version 1.30
- [ 1147] By: abeltje on 2008-01-01 15:53:10 +0100
- Log: * [CHANGE]
- FIX: forgot about smokeperl.pl in 1140
- [ 1149] By: abeltje on 2008-01-03 12:31:23 +0100
- Log: * [CHANGE]
- ADD: mention harnessonly and harness3opts in the
report
- [ 1150] By: abeltje on 2008-01-03 12:34:49 +0100
- Log: * [CHANGE]
- - remove support for 5.005xx
- [ 1151] By: abeltje on 2008-01-03 12:36:28 +0100
- Log: * [CHANGE]
- ADD: from now on, archive the .out file as well (this
could help debugging)
- [ 1152] By: abeltje on 2008-01-03 14:08:52 +0100
- Log: * [CHANGE]
- FIX: also include the 'No plan found' message from
harness 3
- [ 1153] By: abeltje on 2008-01-03 14:09:58 +0100
- Log: * [CHANGE]
- ADD: diagnostic message for HARNESS_OPTIONS
- [ 1154] By: abeltje on 2008-01-03 14:11:44 +0100
- Log: * [CHANGE]
- ADD: information about the number of cores if found
(known)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1155
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE] [MERGE] from ts-devel
- [ 1141] By: abeltje on 2007-12-30 16:36:34 +0100
- Log: * [CHANGE]
- FIX: the private test-suite
- [ 1142] By: abeltje on 2007-12-30 16:37:18 +0100
- Log: * [PRIVATE]
- FIX: add droopy to the test machines
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1156
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE]
- FIX: test must take change 1152 into account
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1157
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE]
- FIX: test must also work on Windows
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1158
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- ADD: new test for Test::Smoke::SysInfo::Linux()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1159
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [PRIVATE]
- more Devel::Cover options
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1160
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE] by Steve Hay
- FIX: use an absolute path for including library paths
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1167
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.20_57 2007-09-24T11:23:36+00:00 (4ee05c0 => abeltje)
- (abeltje, 13 years ago) * [CHANGE]
- Update version 1.20_57 (will be 1.20.07)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1111
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: support for skipping tests per smoke_config
- set {skip_tests} to a MANIFEST like file
- before 'make test' rename all files in {skip_tests}
- run 'make test'
- rename the testfiles back to their original name
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1112
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: fiddle with file permission before/after rename()
- ADD: $! to rename not ok diagnostics
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1113
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted by Merijn
- test the argument handling of tsuname() from an object to keep
data consistent
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1114
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: files to prepare for testing skip_tests feature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1116
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: files to test the new skip_tests() feature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1117
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- redesign the skip_tests feature:
- (temporarily) remove lib/ and ext/ tests from MANIFEST
- (temporarily) rename :core (t/*/*.t) tests
- ADD: tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1118
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- more verbosity in Smoker.pm
- ADD: a new section to the report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1119
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: skip_tests question
- reorder the mail questions
- ADD: support for &-d (like Configure) to switch to --usedft
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1121
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- ADD: support for HARNESS_OPTIONS from Test::Harness 3
- FIX: small bug in the reports found by Merijn
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1133
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- ADD: default config stuff for the new 5.10.x branch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1134
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 12 years ago) * [CHANGE]
- ADD: new config stuff for the new 5.10.x branch to the
distribution
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1135
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.20_50 2007-08-30T13:00:48+00:00 (14b07f0 => abeltje)
- (abeltje, 13 years ago) * [CHANGE]
- We also need to keep up with devel releases...
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1075
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: older (< 5.8) perls don't know C<use Exporter 'import';>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1080
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: multilocale bldenv_legend() thinko
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1081
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: missed the 2 new .out files needed by t/reporter.t
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1087
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: ftp::LIST can return '.' and '..'; prevent an endless loop
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1092
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: add ftype to the parameters of Test::Smoke::FTPClient->new()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1094
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: set utime() before chmod() (most files are read only!)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1096
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- use time_in_hhmm() to show the elapsed time for syncing
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1097
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: test-count for skipping
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1099
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- Help cygwin-rsync: chdir() into {ddir} and rsync to '.'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1100
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] thanks to Merijn for pointing it out
- FIX: plan *before* the first test! (Test::Builder fixed a bug)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1103
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: --cfg=<buildcfg> to the options
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1105
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: we need to 'use Cwd;' to call cwd() (#1101)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1107
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: NetBSD moved sysctl to /sbin
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1109
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.20 2007-08-11T11:32:32+00:00 (cc35c8d => abeltje)
- (abeltje, 13 years ago) * [CHANGE]
- prepare for release 1.20
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1055
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1057
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [PRIVATE]
- ADD: new test for new Mac's system_profiler output (Intel)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1059
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] thanks to David Cantrell
- Map the new output for Mac-Intel of system_profiler to the old one
- make tsuname() also a method
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1060
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted Liu, XiaoLiang
- FIX: use '-version' not '--version' to find a version of 'patch'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1067
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted by Liu, XiaoLiang
- FIX: for synctype 'copy' enforce the source-dir to be a directory
- FIX: do not allow the same source and destination dir for synctype
'copy'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1070
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] request by Gabor Szabo
- Allow for multiple locales per run (needs testing)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1071
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: undef-bug in the multi-locale code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1074
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_88 2007-06-16T09:22:14+00:00 (f02223e => abeltje)
- (abeltje, 13 years ago) * [CHANGE] request by Merijn
- ADD: --patchlevel=i to support --smartsmoke --nofetch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1052
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] found by cpantesters
- FIX: some Carp::carp without parentheses
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1053
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- updated the text
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1054
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_87 2007-05-05T11:44:58+00:00 (e0b1551 => abeltje)
- (abeltje, 13 years ago) * Prepare snapshot 1.19_87
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1047
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1048
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_86 2007-04-01T19:30:23+00:00 (e00d441 => abeltje)
- (abeltje, 13 years ago) * [CHANGE] prompted by Yves Orton
- harnessonly feature now available fore all platforms
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1030
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted by Yves Orton
- change the continue switch to continue! so it has a --nocontinue
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1031
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: harnessonly question
- - REM: no more use for the 5.005 defaults
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1032
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1033
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: some Carp::carp stuff (found by 5.9.4)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1035
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: some more Carp::carp stuff (found by 5.9.4)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1036
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: some more Carp::carp stuff (found by 5.9.4 and 5.005_04)
- Bump versions for 1036
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1037
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [PRIVATE]
- FIX: some stuff to help portability between Perl versions
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1038
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] by Yves Orton
- big change to sort the harnessonly stuff and do some refactoring
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1039
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] feature request by Yves Orton
- set Debug => 1 for {v} > 1 and MIME::Lite with smtp
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1040
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: Steve Hay found unreported stuff in his MinGW smokelog
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1041
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- set 'charset="UTF8"' in the Content-Type header for Mail::Sendmail
and MIME::Lite when $ENV{LANG} is set to something UTF-8
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1044
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_85 2007-03-09T14:02:19+00:00 (1ede772 => abeltje)
- (abeltje, 13 years ago) * [CHANGE] thanks Merijn for pointing this out
- FIX: MakeMaker 6.30_01 introduced INSTALLSITESCRIPT and doesn't
use INSTALLSCRIPT anymore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1025
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] by H.Merijn Brand
- FIX: remove /(?:32|64) from os version to avoid warning
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1026
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] by Yves Orton
- FIX: to_skip count was not right
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1027
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted by Yves Orton
- WARN about non NTFS filesystems on MSWin32
- FIX: defaultenv default setting on MSWin32
- WARN about not using defaultenv on MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1028
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] prompted by Yves Orton
- skip_all when non NTFS filesystems on MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1029
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_84 2006-05-28T09:04:14+00:00 (186919c => abeltje)
- (abeltje, 14 years ago) * prepare for a snapshot of 1.19_84
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@984
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@985
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- - FIX we cannot use() or no() 'warnings'; need to support 5.005004
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@987
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- Test::Smoke::Util
- FIX vms_whereis(): {path_sep} eq '|' on VMS so we need to
quote-meta
- FIX vms_whereis(): executable images found in DCL$PATH need a
'MCR'
- Test::Smoke::Syncer
- FIX _extract_snapshot() and friends: more work on the VMS side;
test-suite now passes (on testdrive)
- configsmoke.pl
- FIX: don't call vms_whereis() directly it is not exported; use
whereis()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@991
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Jarkko Hietaniemi
- Use $CFGFILE and $LOCKFILE when already set in the jcl
(Win32/*nix)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@993
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [ADD]
- a new utility to rerun a smoke for a specific configuration
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1001
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX: return undef when no matching config is found
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1002
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Rich Rauenzahn
- Rewrite the HPUX() routine
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1006
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) [CHANGE]
- Help the FTP-sync on VMS
- move clean_filename() to Test::Smoke::Util
- set the right snapshotname on VMS (using clean_filename)
- Introduce -Uuseshrplib for MSWin32 to set BUILD_STATIC (no effect
on smoke yet)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1008
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- FIX: new message from gcc-2.7.2.2 (invalid use of)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1018
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE]
- ADD: the new gcc2722 messages file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1019
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] by H.Merijn Brand
- more HP-UX stuff
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1022
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 13 years ago) * [CHANGE] by H.Merijn Brand
- no use testing for 64bit on os <= 10.20
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1023
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_83 2006-05-26T13:04:25+00:00 (a79b8dc => abeltje)
- (abeltje, 14 years ago) * Prepare a new snapshot 1.19_83
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@980
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX mmk_test_harness() to also use the new Test::Harness output
parsing regexen (from change 979)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@982
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- move whereis() and vms_whereis() from t/Testlib.pm and
configsmoke.pl to Test::Smoke::Util because Test::Smoke::Smoker uses
them for VMS
- tweak the tests and t/Testlib.pm to reflect this move
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@983
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_82 2006-05-25T22:30:35+00:00 (92341ba => abeltje)
- (abeltje, 14 years ago) * prepare a snapshot for 1.19_82
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@978
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX pasring Test::Harness output (2.60 +)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@979
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_81 2006-05-25T19:13:59+00:00 (b9158ee => abeltje)
- (abeltje, 14 years ago) * prepare for snapshot 1.19_81
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@969
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- ADD new tests for Test::Smoke::Util::grepccmsg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@970
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- ADD new tests for Test::Smoke::Util::grepccmsg() to the
distribution
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@971
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [PRIVATE]
- FIX typo in the new support program 'sysinfo.pl'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@972
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX there should be no directories in MANIFEST
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@974
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@975
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX parsing output of Test::Harsess; 2.60 changed it :-(
- add tests for the new regex
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@977
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_80 2006-01-20T16:34:28+00:00 (9f9caf1 => abeltje)
- (abeltje, 14 years ago) * We should prepare for 1.20
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@925
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- - REMOVE smoke562_config; configsmoke.pl doesn't support that
version anymore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@926
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) [FIX]
- I removed support for 5.6.2, so bye bye smoke562_dfconfig
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@928
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- ADD swcc and swbcc to the sortorder of keys
- Rephrase the questions for swcc and swbcc a bit
- Also check for ccp5p_onfail with mailx
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@930
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Jarkko Hietaniemi
- The osver in Tru64 has a letter prefix, e.g. "V5.1".
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@935
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [FIX] by Jarkko on his own patch (935)
- > Hrmmm, what is that %s doing in there...?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@939
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Steve Hay
- I found that my bleadperl smoke was taking twice as long as usual
and
- was writing a 100MB+ log file!
- The reason is that it didn't recognize the new format output
(integer
- milliseconds rather than fractional seconds), so was re-running
every
- test verbosely!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@940
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- Fix a bug reported by Jarkko where the BUILDDIR blok was looping
for paths that spring from a symbolic link (cwd does readlink all the
way through the path)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@958
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] thanks to Dominic Dunlop
- use the 'Machine Name' from system_profiler for _cpu
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@960
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Merijn
- FIX hpux sysinfo for 11.23
- add new script sysinfo.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@961
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [PRIVATE]
- add sysinfo.pl for compile test
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@962
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] thanks to Merijn!
- FIX the /32- /64 bit cpu thing for hpux
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@963
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] thanks to Merijn!
- more defencive FIX for the /32- /64 bit cpu thing for hpux
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@964
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Dominic Dunlop
- use the all the output from system_profiler(1) for darwin
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@965
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- FIX _extract_with_external() returned the wrong directory in the
case the snapshot was already in {ddir}
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@966
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- try harder to get the cpu info for Linux on macppc
(/proc/cpuinfo->'detected as')
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@967
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- change the Borland bcc32 regex in grepccmsg() (by Steve Hay)
- - remove /s from the match in grepccmsg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@968
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_76 2005-10-16T21:01:03+00:00 (270214c => abeltje)
- (abeltje, 15 years ago) * [SNAPSHOT]
- prepare for another snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@914
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@915
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] request from Yitzchak
Scott-Thoennes/Steve Hay
- add support for the new PERL_PATCHNUM in patchlevel.h
- Test::Smoke::Util::get_patch()
- Test::Smoke::Util::get_local_patches()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@917
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Jim Cromie
- make the basic patchinfo available with v == 1
- add the patch-filename to the description (in patchlevel.h)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@918
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- Activestate has moved the APC to a new server
- Activestate has added snapshots to the APC
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@919
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [FIX]
- change 919 changed some defaults; ajust the tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@920
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE]
- Some patches also need to run 'regen_perly.pl', but Bison 2 is not
everywhere, so we fix the patches-info-file to signal this by specifying
'!perly' on a single line
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@921
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] by Jarkko Hietaniemi
- also use POSIX::uname on True64 (dec_osf) for more os info (like
solaris)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@922
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] to help more general mirroring
- FIX support for non-anonymous access
- ADD support for M$ ftp servers (in NT mode)
- ADD support for transfer mode (ftype 'binary'/'ascii')
- ADD speed info for verbose >= 1
- ADD Debug to Net::FTP for verbose > 2
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@923
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 14 years ago) * [CHANGE] thanks to Jarkko Hietaniemi for
finding this
- make the switches for CC: and BCC: addresses configurable for
mailx
- ADD swcc (-c or ~c on hpux/Tru64)
- ADD swbcc (-b or ~b on hpux/True64)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@924
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_75 2005-08-05T13:40:47+00:00 (b1d96a8 => abeltje)
- (abeltje, 15 years ago) * [FIX]
- 898 was not right: should be set_smoke_patchlevel()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@899
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] Thanks to Jim Cromie for making me do
this
- add support for patching the intermediate tree in a forest and
resyncing the build tree from that
- code fixes to return patch() success (or not)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@900
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add new helpfiles for testing
- add new tests for patch forest (change 900)
- fix some tests to reflect the new helpfiles
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@901
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- - remove the flag => TRY_REGEN_HEADERS setting for windows; after
patching regen_headers is now always called
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@902
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- '+' needs escaping in a regex
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@903
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- now get the regex right (bad programmer, no cookie)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@904
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- get the skip tests count right
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@905
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- no lexical filehandles in 5.005_04!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@906
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- pre-release tweaks
- - hide the 5.6.2 tree
- add verbosity to Test::Smoke::Patcher::perl_regen_headers()
- mention the fix for patchtree in forest setup
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@907
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- fix a hide code with POD thing (use #)
- chk_buildcfg() allow -Duse64bitall for OS X 10.4
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@908
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- - Remove the develooper.com link for webarchive
- Add a link to Google groups far a seachable webarchive
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@909
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- typo in module name
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@910
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] thanks to reini urban
- use the Windows environment variables always as fallback
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@911
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add the Win32 check for -DCCTYPE (thanks Steve Hay)
- add $ENV{PERL_DESTRUCT_LEVEL} for extend_with_harness() (request
by Nick Clark)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@913
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_74 2005-08-05T13:15:15+00:00 (f0df6ac => abeltje)
- (abeltje, 15 years ago) * [CHANGE]
- add set_smoke_localpatch() to add the patchlevel as locally
applied patch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@898
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_72 2005-07-23T11:37:18+00:00 (473995b => abeltje)
- (abeltje, 15 years ago) * Prepare new snapshot: 1.19_72
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@877
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- apply a patch like #24855 (by Steve Hay) to help BORLAND ccversion
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@879
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- now get BORLAND ccversion right (change 879)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@880
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX] by Steve Hay
- Carp::carp() needs parentheses in get_ncpu()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@881
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] (with help from Steve Hay)
- support grepccmsg() for BORLAND bcc32 on MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@882
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- fix the Carp::xxx() calls Test::Smoke::Patcher
- add support for patch descriptions
- run $^X -x patchlevel.h "$descr"
- add tests for the descriptions in patchlevel.h
- update the snapshots with newer patchlevel.h to test the
descriptions
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@883
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- fix the bcc32 regex for grepccmsg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@884
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- help MSWin32 to set the new patchlevel.h
- clean the testing regex (the joy of Test::More versions)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@885
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- need to load File::Path to have rmtree() in
set_vms_rooted_logical()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@886
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- do some more skipping (sendmail) on VMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@887
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- complete the "locally applied patches" thing (883, 885)
- copy the add description code from patchlevel.h and use that
- add a list of locally applied patches to the report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@888
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- do the local patches list proper (with join)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@889
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Some more VMS tweaks
- fix mani2abs() in Test::Smoke::SourceTree
- add pre_sync() and post_sync() to the Test::Smoke::Syncer object
- just to set the destination dir on VMS to a rooted logical
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@890
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add a test for the "Locally applied patches:" section
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@891
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- remove the test directory!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@892
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- document the new local patch description feature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@893
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add verbose stuff to get_local_patches()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@894
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- get the regex for local_patches[] right
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@895
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Get rid of Merijn's LSB-release thingy on SuSE
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@896
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Update with new features
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@897
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_71 2005-07-21T16:54:14+00:00 (b414809 => abeltje)
- (abeltje, 15 years ago) * Prepare for a snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@873
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@874
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Add gccmsg.* to the distro
- make t/reporter.t work with these new files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@876
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_70 2005-05-01T22:20:49+00:00 (aba793b => abeltje)
- (abeltje, 15 years ago) * Prepare for a snatshot @ 1.19_70
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@859
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- ppc will now be macppc (on mac's)
- OpenBSD has 'cpuspeed' on macppc
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@860
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- allow the new timing information that Test::Harness 2.50 provides.
Should only affect MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@861
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add support for the -v switch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@862
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- do some more OpenVMS tweaking
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@863
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add a regex for MSVC messages to Test::Smoke::Util::grepccmsg()
- write the `nmake -f smoke.mk` output to tty (caught by the
redirection in the smoke JCL)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@864
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- typo in the mswin32 (MSVC) regex
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@865
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- No use trying to find messages in a non-existing file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@866
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- typo in the new support for -v
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@867
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- use {w32cc} to determine if we're using MSVC (to safe the nmake
output)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@868
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- also use the lc($cc) to actually get the regex pattern
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@869
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- Remove a warning generated with -v > 1 && testenv==minitest
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@870
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- tweak the MSWin32/MSVC regex in grepccmsg() to skip the NMAKE
messages
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@871
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- no need to delay the report-generating on MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@872
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_67 2005-04-19T13:52:50+00:00 (80f7e63 => abeltje)
- (abeltje, 15 years ago) * [CHANGE] thanks to Kane and the bsd/os box
- move the setting $ENV{ $Config{ldlibpthname} } to after the
Configure step and use the value that this newly configured perl has in
config.sh
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@842
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [ADD]
- Add the perl5lib option to set PERL5LIB in the wrapper-jcl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@843
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Add some statistics (nrof smoke/skip configs)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@844
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- I found that patchlevel.h < 5.6 has different defines for the
version; now also taken into account
- the version_from_patchlevel_h() code wasn't tested
- remove the code from Test::Smoke::Syncer; one copy in
Test::Smoke::Util is enough
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@845
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] suggested by Jarkko Hietaniemi
- integrate the grepccerr script:
- this will only work if there is a logfile and the os supports
reading from an open file (as the logfile is an os redirection)
- Still need to split the smoking and the reporting for MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@846
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- now try to make it work on other platforms than darwin ;-)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@847
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- make sure all platforms see 'gcc'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@848
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- - Remove the '/o' from grepccmsg regex (some systems didn't like
it)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@849
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- resolve a 'use of uninitialized value'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@850
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Add support for grepccmsg() on MSWin32 with delayed report
creation
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@851
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- typo in write_bat()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@852
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- thinko in write_bat() :-(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@853
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- lets get it right with write_bat()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@854
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- lets get it right with write_bat() try 4
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@855
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [REMOVE]
- - No more pgp-signing... (for the moment)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@856
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [PRIVATE]
- No more SIGNATURES and META.yml to maintain
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@857
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Fix support for delayed archiving and reporting
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@858
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_66 2005-02-13T08:36:25+00:00 (c19283d => abeltje)
- (abeltje, 15 years ago) * Prepare for snapshot of 1.19_66
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@834
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@835
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'SIGNATURES', 'META.yml'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@836
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] thanks to Steve Hay
- add F<chkbcfg.pl> to the list of scripts
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@838
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- help Solais (10) for Intel (it hasn't got prtdiag support)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@839
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_65 2005-02-11T10:03:46+00:00 (092fae5 => abeltje)
- (abeltje, 15 years ago) * Prepare for 1.19_65 snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@824
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@825
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [AUTOCOMMIT]
- Regenerate 'SIGNATURES', 'META.yml'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@826
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- {testmaker} wasn't set properly (VMS/MSWin32)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@828
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- tests were failing now that vms_whereis() finds programs
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@829
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [ADD]
- chkbcfg.pl - Check the buildconfigfile specified
- configsmoke.pl now shows the output of chkbcfg.pl at the end
- configsmoke.pl new also sets {testmake} on VMS/MSWin32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@830
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [PRIVATE]
- add the new chkbcfg.pl script
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@831
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- the DCL in vms_untargz()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@832
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- relocate the source-tree from within the source-dir (File::Find
doesn't like VMS paths)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@833
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_60 2004-11-20T12:59:32+00:00 (1fc72cc => abeltje)
- (abeltje, 16 years ago) * [CHANGE]
- BIG reorganisation of the source-tree. Needed to make the distro
work on OpenVMS.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@799
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- This shouldn't have moved :-(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@800
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Part of the distribution reorganisation
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@801
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Fix a thinko:
- Changes needs to be committed before "make dist"
- SIGNATURES and META.yml can only be committed after "make dist"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@802
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- changes 23498 and 23560 added the minitest target for OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@804
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Jarkko Hietaniemi send some osf information
- I'm still working on OpenVMS...
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@805
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- wrong variable in the Solaris/osf code :(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@806
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- change 804 wasn't enough to enable minitest for OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@807
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE] Suggested by Craig Berry
- Better hardware diagnostics for OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@808
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- reverse 799,800,801
- Makefile.PL PMLIBDIRS => must have a Unixpath to help File::Find
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@809
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Move FAQ to the lib/ directory, now it's Test::Smoke::FAQ
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@810
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX] (bug found by Steve Peters)
- Make sure the list of patches in
Test::Smoke::Syncer::Snapshot::_get_patches() is sorted
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@811
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIXFIX]
- I buggered up change 811, now done right
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@812
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- more VMS specific onfigure stuff
- added vms_whereis()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@813
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [PRIVATE]
- FAQ moved to Test::Smoke::FAQ
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@814
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- clean up the "make -i distclean" mess at the beginning
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@815
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- mirror() returns false/true on fail/success
- make the unlink()s VMS friendly
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@816
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Test::Smoke::Syncer::FTP::sync() now returns true/false for
success/failure
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@817
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Implement perl-change 23554, that splits Config.pm into two files
(Config_heavy.pl)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@818
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- Make the tests obey $SMOKE_VERBOSE
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@819
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add tests for change 816/817
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@820
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [CHANGE]
- add support for -Dusethreads -Duemymalloc -Uuseimpsys on MSWin32
- new testfile for Test::Smoke::Util::skip_config()
- skip_config() for -Dusethreads -Dusemymalloc without -Uuseimpsys
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@821
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- a directory separator thing for MSWin32 (/ and \)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@822
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 15 years ago) * [FIX]
- make sure the reference tests follow $^O!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@823
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_53 2004-11-19T22:01:39+00:00 (497c271 => abeltje)
- (abeltje, 16 years ago) * prepare for the 1.19_53 snapshot!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@796
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes', 'SIGNATURES', 'META.yml'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@797
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_52 2004-11-14T10:10:12+00:00 (9225864 => abeltje)
- (abeltje, 16 years ago) * [CHANGE]
- Prepare for the Test::Smoke-1.19_52 snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@789
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [AUTOCOMMIT]
- Regenerate 'Changes', 'SIGNATURES', 'META.yml'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@790
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] (By Craig Berry!)
- -Dusevmsdebug builds "ndbgperl.exe" on OpenVMS, so check for that
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@792
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] (By Jarkko Hietaniemi!)
- This should sort out the Solaris/OSF harware information
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@793
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- more of a fix, I shouldn't use one Makefile.PL for both creating
distributions and user deployment
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@794
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- take out the debug-print statements
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@795
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_51 2004-10-30T14:23:53+00:00 (a1d3aa5 => abeltje)
- (abeltje, 16 years ago) * [CHANGE]
- minor fixes
- now we do a real snapshot: 1.19_51
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@772
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen Changes for 1.19_51
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@773
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen SIGNATURE for 1.19_51
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@774
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- Solaris `prtdiag` output is inconsistent between versions/hardware
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@776
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- rearrange some parts
- Add 'META.yml' to the autocommit list
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@778
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Update for the upcomming 1.20
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@779
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- No under-bars in perl version numbers! (VMS)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@780
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Forgot (change 776): $VERSION += 0.001
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@781
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- Transform filenames with multiple dots for OpenVMS during
check_MANIFEST()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@782
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- another FindBin replacement
- no redirection in system command for OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@783
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- thinko in the new -Dusevmsdebug reporting
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@784
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Reporter knows about variable reportnames, so Mailer should also
know.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@785
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Now that we almost fully support variable rptfile name, the
user-interface need to also support it
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@786
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- On Merijns request. "not ok xx # skip" shouldn't count as failure
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@787
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- changes the logic of constructing absolute paths
- fix the "odd number of arguments" in the opt hash assignment
- add an '@' to the DCL script name for printing
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@788
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.19_50 2004-09-20T21:38:57+00:00 (582c7d4 => abeltje)
- (abeltje, 16 years ago) * [CHANGE]
- This is a snapshot-ish change
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@737
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [SVN]
- svn:ignore
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@738
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Add wrapper around Test::Smoke::BuildCFG::Config->new()
- Add Test::Smoke::BuildCFG::Config->rm_arg
- cleanup common-args from failures
- update the tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@739
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- adjust tests to follow Change 739
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@740
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Added Test::Smoke::FTPClient for mirroring a sourcetree
- Added the 'ftp' sync-method for Test::Smoke::Syncer
- Added a test-environment
- Added a small test to see if it all works
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@750
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Change 750 didn't put the added files in MANIFEST
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@751
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Change 750 didn't put the added files in private/test_*.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@752
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- make sure $verbose is not undefined in __do_mirror()
- fix POD stuff
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@753
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- clean up the mirrored directory
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@754
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- Merijn found a bug with $_ getting mixed up
- Change 735 didn't do the right thing
- made all for() and while () code with named variables
- Start of the VMS port in __get_os()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@755
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- undefined value in $Config{d_link} if not available
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@757
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- The MANIFEST should reflect the contents
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@758
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- A lot of File::Spec stuff that doesn't really work on VMS :-(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@759
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- Forgot to add the 'ftp' sync method (change 750)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@760
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- standardize filenames and help VMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@761
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added set_vms_rooted_log()
- added tests for set_vms_rooted_log()
- - removed check_MANIFEST() now done by Test::Smoke::SourceTree
- - remove the tests for check_MANIFEST() [manifest.t]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@762
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- FindBin doesn't work on VMS, so another construct is now used
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@763
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added a lot of VMS stuff
- fixed some stuff that didn't work on VMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@764
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- More VMS related stuff
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@765
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added some debug information
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@766
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- use File::Basename::dirname( $0 ) instead of $FindBin::Bin (VMS
doesn't like it)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@767
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Added tests for mmk_test_harness()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@768
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Added 'vmsperl.cfg' as the default build configurations file on
OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@769
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Added support for VMS and -Dusevmsdebug
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@770
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Added support for OpenVMS
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@771
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_66 2004-03-12T08:43:35+00:00 (ea9d55c => abeltje)
- (abeltje, 16 years ago) * [ADD]
- Many requests for the inclusion of the latest change number, I
hope this does the trick.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@648
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] asked for by Steve Hay
- We now keep track of the return status ($?>>8) from the qx// in
_run()
- The first place this is used: make_() will return BUILD_MINIPERL
instead of BUILD_PERL if the make exits non-zero
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@649
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Cleanup the new $REVISION code (always return the highest of $Rev$
and .patch)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@650
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- Better information about Win32/Cygwin hardware if
Win32::TieRegistry is available
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@651
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- added the --pfile argument the help smoking with a patches file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@652
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- added two more questions:
- How can I skip a step in smokeperl.pl?
- How do I smoke my patch?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@653
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen Changes for 1.18_66
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@654
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen SIGNATURE for 1.18_66
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@655
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] from Test-Smoke-1.19.xx
- [ 662] Log: * [FIX]
- change 652 wasn't enough, needed to force the
cmd-line override of --pfile
- [ 663] Log: * [ADD]
- added extra_manicheck() after "make distclean" for
verbose > 1 to check if stuff gets deleted of sticks around after
distclean. Currently only outputs to the .log file
- [ 665] Log: * [CHANGE]
- print "[default]" as an environment indicator for
failing tests under --defaultenv
- change the Revision indicator from "@" to "#" in the
report signature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@666
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] from Test-Smoke-1.19.xx
- [ 671] Log: * [ADD]
- added the cpu speed for IRIX
- [ 672] Log: * [FIX]
- Minor thingy with failure count in unfinished smokes to help
smokestatus.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@673
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] (The backlog from 1.19.xx)
- [ 674] By: abeltje on 2004-04-19 01:37:22
+0200
- Log: * [FIX]
- Yup, I managed a typo in 20 keystrokes :(
- [ 675] By: abeltje on 2004-04-19 09:09:28
+0200
- Log: * [FIX]
- changes #672 and #674 were not enough (see if this works)
- [ 676] By: abeltje on 2004-04-20 23:39:23
+0200
- Log: * [CHANGE] (Thank you Merijn for reporting this)
- - Remove the VERSION test that now looks silly and is failing
under blead anyway
- [ 677] By: abeltje on 2004-04-22 11:31:07
+0200
- Log: * [CHANGE]
- added cpufrequency for MacOS-X (and any other BSD that cares to
implement hw.cpufrequency)
- added more information to sysinfo() output when passed a true
argument
- [ 678] By: abeltje on 2004-04-26 02:31:25
+0200
- Log: * [CHANGE]
- Added a check VERSION >= 5.9 and -Uuseperlio for the build_cfg
- [ 679] By: abeltje on 2004-04-26 21:47:44
+0200
- Log: * [CHANGE]
- tiny addition to calc_timeout() so it can also be used in
retrospect
- [ 680] By: abeltje on 2004-04-26 21:49:09
+0200
- Log: * [CHANGE]
- still more info on terminated/hanging smokes
- [ 681] By: abeltje on 2004-04-26 22:06:59
+0200
- Log: * [FIX] sloppy job :(
- forgot to import calc_timeout()
- [ 684] By: abeltje on 2004-04-30 15:08:15
+0200
- Log: * [CHANGE]
- put some effort in calling 'sysctl' on BSD
- split Linux() for sparc and ppc achitecture
- add cpuspeed for Linux_sparc()
- add Linux_ppc() [Thanks to Alain Barbet!!!]
- Some fiddleling to make it work for perl5.004_05
- [ 685] By: abeltje on 2004-04-30 15:11:58
+0200
- Log: * [CHANGE]
- make the tests work with perl5.004_05
- calc_timeout( 'hh:mm' ) now returns 24 hours if it *is* hh:mm
- [ 686] By: abeltje on 2004-04-30 15:15:25
+0200
- Log: * [CHANGE]
- The test is now skipped by default and can be run with
SMOKE_DO_SIGTEST=1
- [ 688] By: abeltje on 2004-04-30 15:17:43
+0200
- Log: * [CHANGE]
- Make the work for older perls
- [ 689] By: abeltje on 2004-04-30
15:55:36 +0200
- Log: * [FIX]
- skip count for perl < 5.005 one too low
- [ 691] By: abeltje on 2004-04-30 18:24:02
+0200
- Log: * [CHANGE] Provided by Gerard Gerritsen
- Support Bcc for sending smoke reports
- [ 692] By: abeltje on 2004-05-01 01:03:54
+0200
- Log: * [CHANGE]
- Added support UTF8 locales on Darwin (and BSD if they are
there?)
- [ 698] By: abeltje on 2004-05-02 22:56:56
+0200
- Log: * [FIX]
- stupid error in -Accflags= handling of unquoted options
- [ 702] By: abeltje on 2004-05-03 00:47:59
+0200
- Log: * [FIX]
- a /, \ issue in _transform_testnames() that could trip up Win32
- [ 703] By: abeltje on 2004-05-03 01:47:18
+0200
- Log: * [ADD]
- META.yml is now generated by newer MakeMakers
- [ 704] By: abeltje on 2004-05-04 21:21:40
+0200
- Log: * [CHANGE] (Inspired by Campo)
- added an implementation for the '-des' option (like with perl's
Configure)
- [ 705] By: abeltje on 2004-05-04 22:08:07
+0200
- Log: * [FIX]
- a Windows issue with default_buildcfg()
- [ 706] By: abeltje on 2004-05-14 09:52:28
+0200
- Log: * [FIX]
- de-typo in the split off in Linux()
- [ 707] By: abeltje on 2004-05-15 19:59:16
+0200
- Log: * [CHANGE]
- Try to also detect Debian (don't know what this will bring)
- [ 708] By: abeltje on 2004-06-08 16:06:07
+0200
- Log: * [CHANGE] by Merijn
- Merijn added a remark about single-line sections in the
buildconfigurations file
- [ 709] By: abeltje on 2004-06-11 17:52:27
+0200
- Log: * [FIX]
- not all Windows-systems seem to have
"LMachine\HARDWARE\DESCRIPTION\System\Central\Processor\0
\ProcessorNameString" so we use "Identifier" as fallback
- [ 710] By: abeltje on 2004-06-12 13:18:35
+0200
- Log: * [FIX]
- minor thinko in the failures counting for "smokestatus.pl"
- [ 711] By: abeltje on 2004-07-16 15:41:53
+0200
- Log: * [CHANGE]
- I seem to have a weird HPUX 11.11 box, ioscan is in /etc
- [ 712] By: abeltje on 2004-07-23 12:49:04
+0200
- Log: * [CHANGE] to match perl-change #23147
- Add parsing for the new lib/Config.pm
- Add fallback to config.sh for values not found in Config.pm
- Add another fallback to some (lame) defaults
- [ 713] By: abeltje on 2004-07-23 15:08:49
+0200
- Log: * [CHANGE] by Steve Hay
- de-typo 'unknown CC' version
- [ 715] By: abeltje on 2004-07-24 18:10:00
+0200
- Log: * [FIX]
- Typo *and* thinko in the SysInfo regarding Linux on sparc
- [ 720] By: abeltje on 2004-07-29 20:02:07
+0200
- Log: * [FIX] Some SysInfo issues
- - By Merijn (AIX 5.2)
- AIX-5.2 reports differently
- - Reported by CPAN-Testers
- psrinfo/prtdiag are in /usr/sbin
- [ 721] By: abeltje on 2004-08-02 23:16:53
+0200
- Log: * [ADD]
- A new program that will help to rerun tests
- [ 722] By: abeltje on 2004-08-20 19:24:06
+0200
- Log: * [CHANGE]
- add the output of extend_with_harness() to the logfile
- call harness with -v for $opt{v} > 1
- [ 723] By: abeltje on 2004-09-04 14:15:50
+0200
- Log: * [CHANGE]
- rename "Power Macintosh" to "ppc" as short model name
- [ 724] By: abeltje on 2004-09-05 13:05:41
+0200
- Log: * [FIX]
- Getting used to the new keyboard (some loose chars in the
program)
- [ 725] By: abeltje on 2004-09-05 13:07:33
+0200
- Log: * [CHANGE]
- Change the '#' to 'Build' as an indicator for the T::S version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@727
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE][MERGE] (from 1.19.xx)
- [ 682] By: abeltje on 2004-04-30 12:53:43
+0200
- Log: * [PRIVATE]
- added this new testprogram to check the testsuite for different
perl versions
- [ 683] By: abeltje on 2004-04-30 14:05:52
+0200
- Log: * [PRIVATE]
- make it more usable?
- [ 687] By: abeltje on 2004-04-30 15:16:00
+0200
- Log: * [SVN]
- set $Id$
- [ 690] By: abeltje on 2004-04-30 16:51:46
+0200
- Log: * [PRIVATE]
- fix some minor things
- [ 694] By: abeltje on 2004-05-02 14:50:08
+0200
- Log: * [PRIVATE]
- Added the ability to use different perlversions
- [ 695] By: abeltje on 2004-05-02 17:36:28
+0200
- Log: * [PRIVATE]
- Changes to the fake perl-build system, to enable cross perl
testing
- [ 696] By: abeltje on 2004-05-02 18:47:37
+0200
- Log: * [PRIVATE]
- Changed the way tests are gathered
- Changed the way output is gathered (for -v)
- [ 697] By: abeltje on 2004-05-02 18:54:27
+0200
- Log: * [PRIVATE]
- Complete the crossperl proving of the private testsuite
- [ 699] By: abeltje on 2004-05-02 23:17:28
+0200
- Log: * [PRIVATE]
- changed the code so MinGW doesn't produce perl.exe even when
this bit is active
- [ 700] By: abeltje on 2004-05-03 00:33:06
+0200
- Log: * [PRIVATE]
- fixed this basic makefile.mk
- [ 701] By: abeltje on 2004-05-03 00:39:05
+0200
- Log: * [PRIVATE]
- change the report matching so it will pass on Win32
- [ 726] By: abeltje on 2004-09-05 13:13:32
+0200
- Log: * [PRIVATE]
- Add the perlversions to check on the new machine (snowy)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@728
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] (Thanks to Merijn)
- Forgot to convert a scalar filehandle back to GLOB in the HP-UX
code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@729
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] (Thanks to Alan Burlison for catching
this!)
- --des wasn't too friendly about mdir/forest_mdir and
fdir/forest_hdir
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@733
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- cleaning of "BLOCK: { local $_ }" code
- some pod changing "=item" to "=head2"
- Solaris OS + Version (Thanks Alan Burlison!)
- add tsuname() with bags of tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@735
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Change paths for the new laptop
- some other small things
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@736
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_65 2004-03-03T10:58:51+00:00 (a56986f => abeltje)
- (abeltje, 16 years ago) * Prepare for a snapshot of 1.18_65 (still
alpha)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@634
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD] (forgot it in change 632)
- t/ftppub/bugtst03.out
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@635
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] by Steve Hay
- The pattern matches at the end of the catfile() line have
clobbered $2 from a previous pattern match which isn't picked up until
the next line. The patch just picks up $2 sooner, before it gets
clobbered.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@636
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- The archive function didn't work properly:
- on win32
- when log was in a differnt directory
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@637
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] (More thanks to Steve Hay for his hard
work on this!)
- There are still problems on Windows with the interpretation of the
'harness' output. I have now added some more safeguards. Hope that
helps.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@638
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] (I hope this doesn't break Win32)
- factor out _transform_testnames()
- change it as 631 broke unixy (bsd) extend_with_harness()
- add a test for _transform_testnames()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@639
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- change match patterns to reflect change 639
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@640
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Rafael asked for removal of '-Uuseperlio' in perlcurrent.cfg, so
we split it of and add 'perl58x.cfg'
- adjust configsmoke.pl
- Add $Id$ to all the *.cfg files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@641
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- add a check for $ENV{SMOKE_INSTDIR} to set the default install
directory, can be ysed together with $ENV{PERL_MM_USE_DEFAULT}
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@642
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- change 639 weeded out too much, we must be stricter wrt/ the
contents of @nok
- Steve Hay reported the new smoker.t tests failing on Win32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@644
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] spotted by Steve Hay
- MY::libscan() had a bug, it matched agians $_ and not against
$path
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@645
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Steve Hay reported problems with file permissions within the fake
snapshots for the testsuite. They're now set to 644 for all files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@646
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- More problems with _transform_testnames() (reported by Steve Hay),
I've now sort of gone back to the original code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@647
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_62 2004-02-21T12:45:55+00:00 (98eb5d0 => abeltje)
- (abeltje, 16 years ago) * [CHANGE]
- prepare for the 1.18_62 snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@608
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- - remove the debug info from the test
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@609
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- A thing I shouldn't have touched in 603
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@610
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- add a trap() and some more exit code for failing tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@611
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- I haven't got this shell-programming thing down yet :(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@612
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen Changes for 1.18_62
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@613
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen SIGNATURE for 1.18_62
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@614
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- I just hope this will keep svn from SEGFAULTing
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@616
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- forgot to bump the $VERSION after a fix (change 610)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@617
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] (sort of suggested by Allen Smith)
- Cc: will now only be send on failure!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@618
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- added a new instance-method: Test::Smoke::BuildCFG->as_string()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@619
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] some Win32 stuff with te help of Steve
Hay
- some tests were doubled for extending with harness
(test==testharness on Win32)
- on Win32 config.sh is only created during make, so we need later
logging of ccinfo
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@620
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- prepare for a feature-request from David Landgren:
- It would be helpful if the config that was used for the smoke
(sans comments) was tacked onto the end of the report.
- implement a feature request from Merijn Brand:
- Can you also display C-compiler info with the --matrix option in
smokestatus.pl?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@621
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- forgot to add this, needed by t/reporter.t
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@622
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- change the way testnames are constructed before passing them to
harness
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@623
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- change the tests to reflect change 623
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@624
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- The first step to make the private test-suite run on Win32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@625
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- Another try to make this work on Win32 (MinGW/dmake)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@626
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- some minor nits in the output
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@627
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added a new sub sysinfo() that can be imported
- adjust the tests accordingly
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@628
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- more output tweaks...
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@629
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- forgot to take the "Matrix" text two spaces back with the actual
matrix
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@630
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] thanks to Steve Hay for finding this
- a thinko in the new paths-code for extend_with_harness()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@631
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] another bug found by Steve Hay (thanks
again for the work!)
- Win32 does not use TEST but harness for its _test target. This
gives output that the parser was not anticipating. 'dubious' is now also
regarded as a valid FAIL indicator.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@632
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] (found by the private testsuite)
- do not prepend 't/' if it is already there when recreating
filenames for extend_with_harness()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@633
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_61 2004-01-17T15:22:03+00:00 (9a6b414 => abeltje)
- (abeltje, 16 years ago) * bump the version for snapshot
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@586
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- more automation, more shellish?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@587
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen Changes for 1.18_61
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@588
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen SIGNATURE for 1.18_61
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@589
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- fix a shell syntax error
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@590
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- more flexible, split commit files (Changes,SIGNATURE) from commit
branch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@591
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] again found by Merijn
- --killtime option wasn't being progated from the commandline
- report generation on timed-out smokes wasn't called correctly
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@592
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD] as suggested by Greg Matheson
- support IS_WIN95 for Configure_win32() as -DIS_WIN95
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@595
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] as suggested by Greg Matheson
- Test::Smoke::Syncer::Hardlink now also supports systems without
hardlinks by using File::Copy::copy.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@598
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Win9[58] (with -DIS_WIN95/dmake) rewrites the makefile, but that
needs to be "smoke.mk" and not "makefile.mk".
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@601
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- ! replace File::Spec with File::Spec::Functions (cleaner code IMO)
- look more poratble with renameing tests while extending with
harness
- more info in the extending with harness log message
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@602
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] thank to Merijn's cygwin machine
- the ever m/inconsistent test ?results/ thing
- a problem with the minitest TSTENV overwriting valid results for
the stdio case
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@603
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Some adjustments that go 1.19
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@605
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Done some work on argument handling in W32Configure.pl
- Changed the way the Win32 version is set
- Documented these changes in ReleaseNotes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@606
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- try to prevent the SEGFAULT in commit
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@607
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_60 2004-01-09T19:06:10+00:00 (559ff86 => abeltje)
- (abeltje, 16 years ago) * Prepare for a snapshot 1.18_60
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@538
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- a POD error
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@539
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- parse_report_Config() didn't get the {arc} bit right (bad test
example)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@540
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- use Test::Smoke::Reporter->write_to_file()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@541
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- adjust the tests for the new report format
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@542
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Some cosmetic changes to output
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@543
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- add the average smoke duration
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@544
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen Changes for 1.18_60
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@545
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * regen SIGNATURE for 1.18_60
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@546
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- thinko in the new est_todo time code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@548
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- no use reporting seconds in 1/1000 when the diff > 5 mins
- time to add a test for time_in_hhmm()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@549
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- add t/util_times.t
- ! move the T::S::Util::calc_timeout() tests to this file
- - remove (the not in the distro) t/calctime.t
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@550
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [REMOVE]
- - followup change 523
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@551
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- yet another thinko in the ETA code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@552
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- Better SysInfo for Solaris (I hope)
- Add some new platforms (found by SysInfo) to the
parse_report_Config() tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@553
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- thinko in the "Inconsistent test result" parse code
- typo in the _post_process() "Inconsistent" code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@554
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] from Test-Smoke-1.18.xx (on top of
515)
- [ 511] Log: * [FIX]
- revision 477 forgot some patch -> patchbin changes :(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@555
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- the dashes on [perlio] for -Uuseperlio caused 'PASS-so-far'
- add a test
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@556
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] By Merijn:
- Date: Mon, 12 Jan 2004 20:06:08 +0100
- From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
- Subject: Re: Smoke [5.9.0] 22104 FAIL(Fc) aix 3 (004ca4aa4c00/1 cpu)
- reporter is mijn schuld. HP-UX < 11.00 (dit is 10.20) kan zowiezo
geen 64 bit
- Meaning: HP-UX before 11.00 doesn't do 64-bit
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@557
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- - get rid of the diag(), it should not be there and confuses
people
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@558
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- - I do not want TABs in my source
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@559
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- what was I thinking in change 556 :-( [don't commit after
midnight!]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@560
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- This is the first shot at implementing a feature request from
Merijn:
- Could you make F<smokestatus.pl> print the letter-matrix when
invoked with "-m"?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@561
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- got the wrong count :-(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@562
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- also got the wrong errorcount on the current config
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@563
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- now for the core of these changes!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@564
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- clean up the matrix output
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@565
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Add the "-m" option to the docs
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@566
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD] (inspired by a test report from Campo)
- a new testcase for (old) AIX report that looked to have gone wrong
in real life
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@567
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- put a dash between AIX and the osversion
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@568
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- from one of Merijns tests (smokestatus.pl -m) I found the wrong
matrix was created, I now added some defensive programming to stop this
from happening
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@569
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Added a newline between the different T::S *_config reports
(Merijn)
- Added the {perl_version} from the *_config to the headerline (Abe)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@570
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- To support 5.005xx smoking out of the box, we need to call "make
test-notty"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@571
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] by Campo Weijerman
- The output of `lsattr ...` seems to have changed as of AIX-5.2
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@572
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- Campo reread the manpage :-)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@573
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- some more __get_os() changes, I need to figure out what happens
with T::S::Mailer->subject()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@577
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] bug found by Merijn Brand
- In this, the c's are in the wrong place:
-  Matrix:
-  22090 Configuration (common) -Dcc=gcc
-  -----------
---------------------------------------------------------
-  F F F F F F
-  - - c - - c -Duselongdouble
-  F F F F F F -Duse64bitint
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@578
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] spotted by both Campo and Merijn
- do not print ETA when there is no {avg}
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@579
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- ! typo in the MANIFEST in change 578
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@580
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- report 'aborted smoke' for ETA <= 0
- bump $Test::Smoke::Reporter::VERSION (forgot the last time)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@581
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- I this fixes the __get_os() for Solaris
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@583
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- - remove the ! on the "m" option, Getopt::Long complained
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@584
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added a line about the new "--matrix" option for smokestatus.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@585
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_52 2003-12-21T11:48:43+00:00 (bcfc161 => abeltje)
- (abeltje, 16 years ago) * [MERGE] from 1.18.xx
- [ 480] Log: * [ADD]
- we now support the new perl-5.6.2 snapshots from
Rafael's
- site
-
___________________________________________________________________________
- [ 467] Log: * [CHANGE]
- Merijn wanted to pass Configure arguments to
- smokeperl.pl, I believe this is a reasonable way to
do
- that.
- [ 475] Log: * [FIX]
- testing on Windows revealed another bug in the
test-suite
- [ 478] Log: * [FIX]
- The smokestatus needs to know where the *_config or
*.lck
- files are hence a new switch "--dir"
- [ 479] Log: * [CHANGE] by David Landgren
- I have patched smokerstatus.pl to print out the mean
- smoke duration. I don't have a diff, but it just
involves
- adding the following line:
- [ 483] Log: * [CHANGE]
- try to keep better track of inconsistant test result
- [ 484] Log: * [CHANGE]
- After a few questions about how to integrate COW into
- smoke, I decided to make default Policy.sh
generated from
- the policy-sections in the build-configurations
file.
- There is no need to create your own Policy.sh if you
want
- to smoke with that kind of ccflags option anymore.
- [ 485] Log: * [ADD]
- added a question about COW and the answer with the
new
- Policy.sh behaviour.
- [ 487] Log: * [CHANGE]
- fiddle with the const subs
- [ 488] Log: * [CHANGE]
- fiddle with some tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@505
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] changes to mkovz.pl from 1.18.xx
- [ 465] Log: * [FIX]
- revision 398 changed the log message too much, so we
lost
- the X result :(
- [ 481] Log: * [FIX]
- still report M even if "make minitest" finished OK
- use "-Dcc=..." as fallback for $Config{cc} when
- applicable
- [ 494] Log: * [FIX] by Jim Cromie
- wrt mkovz.pl # REVISION: 1.19
- attached makes spelling correction, and juggles a
sentence
- for better (imo) clarity.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@506
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE] merge the private changes from
1.18.xx
- [ 469] Log: * [PRIVATE]
- added the automated generation and commit of the
Changes
- file just before making the distribution file
- [ 476] Log: * [PRIVATE]
- added '-c' (commit) to auto commit Changes and
SIGNATURE
- [ 486] Log: * [PRIVATE]
- add support for coverage stuff (./mkdist.sh -e)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@507
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- SysInfo stuff
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@508
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- tweak the tests so they'll pass on HP-UX
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@509
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- move the time_in_hhmm() routine to Test::Smoke::Util
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@512
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX] found by Allen Smith
- get_ncpu( 'irix' ) was expecting a fixed order of output from hinv
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@513
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- making progress on the new reporter module
- SysInfo::AIX() donated by Merijn (but needs more work)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@514
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] from 1.18.xx (forgot it in an earlier
round, thank you Merijn for finding that)
- [ 477] Log: * [FIX]
- Some testing and a feature request from Merijn showed
a
- thinko in the patch-a-tree logic.
- the {patch} configvariable is now renamed {patchbin}
- the patchtree() call in smokeperl.pl now works
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@515
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE] by Merijn Brand
- Date: Wed, 07 Jan 2004 15:57:10 +0100
- From: "H.Merijn Brand" <h.m.brand@hccnet.nl>
- Subject: Re: better hardware info for Test::Smoke reports
- How about this for a start
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@517
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Backporting Merijn's patch for perl 5.5
- Some cosmetic changes and split out most of the os code
- IRIX()->os (input from Allen Smith)
- check ->host and ->os in the testfile
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@518
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- I believe we have a new reporter module (it will need more work)
- and some basic tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@519
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- update SmoketestLib.pm to use the new Reporter module
- update the private tests to expect the new Report format
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@520
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- I now use the "prove" command from Test::Harness, looks better
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@521
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- call_mkovz() -> genrpt() [and use Test::Smoke::Reporter]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@522
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Add Test::Smoke::SysInfo and test
- - Remove ChangeLog, Configure.pl, mktest.pl, mkovz.pl, smoke.sh,
smoke.cfg, smokew32.bat
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@523
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- changing MANIFEST warrents changes in Makefile.PL
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@524
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- POD error
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@525
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- added and removed files to/from the distro
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@526
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [FIX]
- a test relied on a file that was just removed from the distro
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@527
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- write the compiler-info to the logfile right after Configure
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@528
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- lowercase the osname in __get_os()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@529
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- pick up compiler-info from the logfile
- added write_to_file() method
- moved the Summary to before the letter-matrix
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@530
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- try to get a better guesstemate for ETA
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@531
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- Update the documentation for 1.19
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@533
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- Added a suggestion for a script that runs continues smokes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@534
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [PRIVATE]
- run the private tests also when crating the distro
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@535
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] from 1.18.xx (forgot it)
- [ 454] Log: * [ADD]
- Nick Clark suggested we try to manage the sending of
reports to perl5-porters.
- There is a new config variable "ccp5p_onfail" that is
implented in Test::Smoke::Mailer and depends on the Summary (PASS/FAIL)
in the subject. It will do a basic check on the To: and Cc: header
fields to try and avoid having p5p in there twice.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@536
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [CHANGE]
- change parse_report_Config() to understand the new report format
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@537
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_51 2003-09-26T10:45:39+00:00 (e6a2b55 => abeltje)
- (abeltje, 17 years ago) * [MERGE] fix --continue
- [ 389] Log: * [FIX]
- an empty archive-dir wasn't respected on a rerun, now
fixed in prompt_dir()
- [ 396] Log: * [FIX] --continue
- moved most of the logic to Test::Smoke::run_smoke()
- added Test::Smoke::BuildCFG->continue() to initialize
the continuation configs
- moved skip_config() to Test::Smoke::Util
- fixed the continue logic for smokeperl.pl
- fixed the continue logic for runsmoke.pl (forgot to
implement)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@439
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE]
- [ 388] Log: * [FIX] sort of...
- Found a problm with WriteMakefile() on a nonclean
distro, we'll "make distclean" before that.
- [ 395] Log: * [FIX]
- The rerun of Makefile.PL problems had to do with
MY::libscan() not exluding blib/
- Don't try to rmdir the CWD, chdir back to where we
come from before that!
- [ 397] Log: * [FIX]
- excluding "blib/" gives also wrong results :(
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@440
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from 1.18.xx MAINT
- [ 389] Log: * [FIX]
- an empty archive-dir wasn't respected on a rerun, now
fixed in prompt_dir()
- [ 424] Log: * [FIX]
- Nick Clark found that configuring from another than
the install directory gets the path wrong in the JCL (Cwd::cwd()
replaced by $FindBin::Bin), Thanks Nick C!
- [ 434] Log: * [FIX]
- Thanks to Nick Clark we now support keeping _config
and .sh (from configsmoke.pl) in a different directory from the install
directory.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@441
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] check_MANIFEST() from
Test-Smoke-1.18.xx
- [ 411] Log: * [FIX]
- also exclude "mktest.rpt" from check_MANIFEST()
- [ 416] Log: * [FIX]
- check_MANIFEST( @ignore ) now ignores the @ignore
files
- added/changed tests to check the new @ignore
behaviour
- [ 417] Log: * [CHANGE] introduce MANIFEST.SKIP
- on top of revision 416. An EXISTING MANIFEST.SKIP is
used!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@442
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 399] Log: * [SVN]
- fiddle with the gnu-options file to get the right
user to sign the distro, something cpansign lacks
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@443
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 368] Log: * [CHANGE] Kindly donated by Steve Hay
- The attached patch (against 1.18_02) changes two URL's
in the README to ones that look rather more "live".
- [ 435] Log: * [ADD]
- Paul Hughes suggested I added a note about failing
tests in t/patcher.t for older patch programs from cygwin (for true
MSWin32).
- [ 401] Log: * [ADD]
- "How do I investigate failures?"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@444
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx (441 was't
enough)
- [ 369] Log: * [FIX] {snapext} got messed up by a stray space
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@445
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 374] Log: * [ADD] more options
- --all report for all the *_config files
- --running report for all the *.lck files
- [ 426] Log: * [ADD] guess_status()
- Jarkko suggested we try harder to report finished
smokes even if the source-tree is already cleaned up by an rsync. This
will only work if you archive the reports.
- [ 428] Log: * Keep up with changing versions (1.18.06)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@446
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx (belongs with
439)
- [ 400] Log: * [ADD]
- new tests for Test::Smoke::BuildCFG->continue()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@447
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 431] Log: * [FIX]
- Nick Clark found that an empty line as the last in a
section was ignored (bad programmer; no cookie!) Thanks Nick for finding
it!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@448
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 425] Log: * [FIX]
- Abigail found that when runsmoke.pl was run like
mktest.pl $opt{ddir} was undefined and caused trouble. It now defaults
to File::Spec->curdir. Thank you Abigail!
- [ 433] Log: * [FIX]
- added the explicit propagation of the
Test::Smoke::Smoker defaults
- changed the log-message from
Test::Smoke::Smoker::make_test() for --norun
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@449
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx (various
fixes)
- [ 373] Log: * [FIX] LD_LIBRARY_PATH was not set
- Thank you Alan for pointing that out!
- [ 432] Log: * [FIX]
- This test was too unforgiving wrt the existance of
the fake-tree directory. Thanks to Paul Hughes for pointing that out!
- [ 409] Log: * [FIX]
- detypo for hp-ux => hpux
- [ 412] Log: * [FIX] (again)
- for HP-UX: $^O ne (POSIX::uname)[0]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@450
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx (tweaks)
- [ 398] Log: * [CHANGE]
- change the "Inconsistant result" message (Schwern)
- [ 410] Log: * [FIX]
- more dots (testnames seem > 30)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@451
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 423] Log: * [FIX]
- Some versions of perl do not like undefined $^, so
added explicit STDOUT_TOP format
- set $= (lines per page) to 9999, I hope that is high
enough
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@452
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from Test-Smoke-1.18.xx
- [ 460] Log: * [FIX]
- Test::Smoke::Syncer::Copy->sync() didn't clean up the
- destination directory
- [ 461] Log: * [FIX]
- The Test::Smoke::Syncer::Copy->sync() destination
- directory cleanup revealed a bug in the testsuite.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@463
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [ADD]
- more code and tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@503
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 16 years ago) * [MERGE] (configsmoke.pl changes from 1.18.xx)
- [ 464] By: abeltje on 2003-10-10 00:21:04
+0200
- Log: * [FIX]
- detypo in the jcl generating code
- +$VERSION (forgot about that last time)
- [ 468] By: abeltje on 2003-10-10 14:33:59
+0200
- Log: * [FIX] (thanks to Merijn)
- more different names for "patch" and check if it
knows
- about '--version'
- [ 482] By: abeltje on 2003-10-20 07:36:13
+0200
- Log: * [CHANGE]
- Use the new snapshot directories on
- ftp://ftp.funet.fi/pub/languages/perl/snap
- [ 499] By: abeltje on 2003-11-28 00:01:37
+0100
- Log: * [ADD]
- Leon Brocard has kindly offered to champion 5.005xx,
- we'll try to help by supporting this in the
smoke-suite.
- [ 501] By: abeltje on 2003-11-28 00:14:22
+0100
- Log: * [FIX] on top of 499
- add the new files to MANIFEST
- typo in configsmoke.pl
- [ 502] By: abeltje on 2003-12-05 22:55:38
+0100
- Log: * [FIX]
- - "-Duselargefiles" is not a 5.005xx option I think
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@504
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18_50 2003-08-15T09:09:24+00:00 (b2c1b4f => abeltje)
- (abeltje, 17 years ago) * We are in devel
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@381
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- Test::Smoke::Reporter + t/reporter.t (replace mkovz.pl)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@382
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.18 2003-08-03T13:41:09+00:00 (2997d7b => abeltje)
- (abeltje, 17 years ago) * This 1.18!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@320
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Regen Changes for 1.18
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@321
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] check_dotpatch() did not return anything
for freshly unpacked snapshots!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@322
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * regen Changes for 1.18 again
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@323
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This is the 1.18 final signature-file
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@324
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [PRIVATE] merge the commandline options from
329
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@335
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] (from 1.18.xx)
- [FIX] There were issues with 'filenames-with-spaces'
- (esp. Win32)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@336
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from 1.18.xx
- (331)
- [FIX] no status was reported when all failures under TEST
- were successful under harness
- Introduced the new status "X" in reports for this case
- (334)
- [FIX] make the new status "X" count as FAIL
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@337
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from 1.18.xx
- archiverpt.pl: 338, 341, 342, 343, 345, 348, 360
- smokestatus.pl: 349, 355, 359
- 352: add them the EXE_FILES of Makefile.PL
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@363
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] from 1.18.xx
- archiverpt.pl: 338, 341, 342, 343, 345, 348, 360
- smokestatus.pl: 349, 355, 359
- 352: add them the EXE_FILES of Makefile.PL
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@364
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [PRIVATE] Merge from 1.18.xx
- archiverpt.pl: 339
- smokestatus.pl: 353
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@365
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] 340, 347, 361, 362 from 1.18.xx
- [ 340] Log: * [FIX] where to "make -i distclean" before
- do_check_manifest()
- [ 347] Log: * [ADD] A makeopt option was added to have some extra
options
- for "make" (like -j)
- [ 361] Log: * [FIX] X counts as FAIL (334 was not enough:(
- [ 362] Log: * [CHANGE] make FTP passive
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@366
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] 346 from 1.18.xx
- [ 346] Log: * [ADD] the file should be there to behave as
documented
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@367
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] 370, 371 from 1.18.xx
- [ 370] Log: * [ADD] two more options to fine-tune yhe make
process:
- makeopt => options to add for make in
- Test::Smoke::Smoker::_make()
- testmake => specify another make binary for "make
- _test" step
- [ 371] Log: * [ADD] request by Alan Burlison support for a
different make
- binary during "make _test"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@372
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_65 2003-08-03T01:15:09+00:00 (e871527 => abeltje)
- (abeltje, 17 years ago) * [FIX] More Release Candidate stuff
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@317
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Keep up with 5.8.1: 1.17_65 aka RC4
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@318
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] include cygwin in check_buildcfg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@319
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_63 2003-08-01T14:18:44+00:00 (29a7b98 => abeltje)
- (abeltje, 17 years ago) * [CHANGE]
- remove the need to specify the '_config' suffix for the --config
option
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@305
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Move do_pod2usage to Test::Smoke::Util (finally)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@306
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Add documentation for the --default option
- Add do_pod2usage()
- Check for MSWin32 && is56x && -Duselargefiles
- change all 5.6.x => 5.6.2 (and 56x => 562)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@307
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] change 5.6.x => 5.6.2
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@308
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This should be 1.17_63
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@309
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] the number of tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@310
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Release Candidates will return full version (5.8.1-RC3) as their
patchlevel
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@311
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Do log failed tests from "make _test" when "All tests successful"
from harness
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@312
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] do_pod2usage() and --man, --help
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@313
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] more Release Candidate stuff for
patch_level
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@314
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * More private testing of
Test::Smoke::Smoker/mkovz.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@315
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- Allow for multiline failed test numbers
- Release Candidate now in the report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@316
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_62 2003-07-31T21:03:26+00:00 (bb2460e => abeltje)
- (abeltje, 17 years ago) This is 1.17_62 aka RC2
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@298
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] pod-interference in HERE doc
(deafult_buildcfg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@299
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] spaces got lost in a regex
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@300
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This *is* 1.17_62 (and on CPAN)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@301
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] Release Candidate snapshots have no
.patch and "RCx" in their patchlevel.h
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@303
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Run "make -i veryclean" before you assemble
the distribution
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@304
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_61 2003-07-24T14:54:44+00:00 (2784735 => abeltje)
- (abeltje, 17 years ago) * $VERSION=1.17_61
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@263
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This is 1.17_61
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@264
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] Stuff to test Test::Smoke::Smoker
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@265
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] Always return at least one section from
$self->_parse()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@266
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- use constants to report the "make status" BUILD_*
- run $self->make_minitest() when $make_status == BUILD_MINIPERL()
- return 1 from $self->make_test() for testing
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@267
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] Change the (no_)plan to a specific
number of tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@268
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] handling for "make minitest"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@269
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * extend the private tests and run before "make
dist"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@270
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Change the smoker test setup to be more
modular
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@271
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] put_file() (revision 273)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@279
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [SVN] set svn:executable
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@280
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] Order and grouping of the keys in
_config (by Merijn)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@281
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] Slightly adjusted versions taken from
perl-current
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@282
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Updated the tests, better coverage?
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@283
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * tweak the test environment
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@284
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Separate the extend_with_harness() code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@285
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Be specific about filehandles you write() to
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@286
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Explain the new status-letter "M" and the
[minitest] failure reports
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@287
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This is a 1.17_61 candidate
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@288
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- check for 56x to set the test-target for make
- do not log the output make _test unless there is no output fom
harness
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@289
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] Set the defaults for the new 5.6.2
branch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@290
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Reorganize the private tests and make-dist
tool
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@291
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Another shot at 1.17_61
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@292
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Keep up with version numbers after changes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@293
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Allow forced default_buildcfg()
- Add Test::Smoke::BuildCFG::Config->args_eq()
- Update the tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@294
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] This distribution now has gpg signing
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@295
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Make mkdist.sh a bit more flexible
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@296
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] Set some new defaults for 5.6.2
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@297
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_60 2003-07-21T16:06:26+00:00 (9c80d9d => abeltje)
- (abeltje, 17 years ago) * This starts 1.17_60 aka 1.18-RC1
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@257
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Changes for 1.17_60 aka 1.18-RC1
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@258
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] POD mistakes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@260
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] wrong escape on a signlequoted string
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@261
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- Report the fact that miniperl was build but no perl!!!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@262
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_55 2003-07-19T01:26:15+00:00 (68bd96c => abeltje)
- (abeltje, 17 years ago) * [ADD]
- Timing information via
- Test::Smoke::Smoker::mark_in() and
- Test::Smoke::Smoker::mark_out()
- The added durations are shown in the report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@240
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * bit of whitespace change
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@241
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * mention the deprecation of mktest.pl
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@242
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * mention the snapshot branches and add the
COPYRIGHT section
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@243
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] new testfile for Test::Smoke::Smoker
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@244
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [SVN] ps svn:keywords Id
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@245
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] open dev/null (do not dup), no skip
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@246
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- use lib; order (Makefile.PL changed LIB)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@247
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] time report message
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@248
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) More tweaks, add runsmoke.pl as script
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@249
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Cleanup and remove references to the "old" smoke
suite
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@250
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] a long standing bug
- On Win32 [nd]make test uses harness (like make test_harness), this
yields different output from running TEST (as on unixy os-ses)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@251
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typo in check_buildcfg()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@252
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- $Archive::Tar::VERSION >= 0.99 uses IO::Zlib not Compress::Zlib
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@253
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] make GetOptions() consistent with the
documentation and remove a double OPTIONS pod-section
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@254
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [POD] more docs
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@255
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typo in the defaultenv option
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@256
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_53 2003-06-22T15:06:43+00:00 (5a847f0 => abeltje)
- (abeltje, 17 years ago) * [CHANGE] finish the --continue patch.
- - $VERSION = 1.17_53
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@196
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This is 1.17_53
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@199
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] opt->opts (rsync options) fix
(revision 200)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@208
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] POD/verbose consistency stuff
(revision 204)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@209
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] 205, 206, 207
- Test::Smoke::Syncer
- - New support to fetch a single snapshot via HTTP
(LWP::Simple::mirror)
- configsmoke.pl
- - make the new HTTP-snapshot feature (revision 205) configurable
- smokeperl.pl
- - new option <--snapshot=i> to change the patchlevel for the
snapshot-file
- - this makes revision 205 easily available
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@210
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] batchfile patch (without the typo)
(revision 213)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@219
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] some more pod (revision 212)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@220
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Document the HTTP snapshot-fetch and
--snapshot switch
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@221
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] 214, 216
- Rename FAQ.pod -> FAQ
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@222
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] --defaultenv (revision 211)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@223
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] Mention --defaultenv
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@224
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- - remove the warning about configuration
- add PMLIBDIRS to get a installation that looks like the distro
- change LIB for the same reason
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@225
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [SVN] set svn:keyword Id and add $Id$
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@226
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- some doc-changes
- I've made a start with build-config check (darwin/BSD/Linux)
- Merijn wanted the keys in *_config files ordered,
- they will be if Data::Dumper->can('Sortkeys')
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@227
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- mention build-configurations check
- mention the Sortkeys for *_config
- set svn:keywords "Id"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@228
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- for 5.004: $Config{_exe} used to be $Config{exe_ext}
- use $self->tty() and not print
- set svn:keywords "Id"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@229
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- Test::Smoke::BuildCFG::Config::any_arg() for consistency
- some rearragements
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@230
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Minor changes (make the start of all packages look alike)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@231
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] I upgraded to Test::Pod 0.95
- test_pod.pl now uses pod_file_ok()
- some minor POD fixes to configsmoke.pl and README
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@232
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] complete the --defaultenv feature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@233
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Move the calc_timeout() sub to Test::Smoke::Util
- Add a testfile for calc_timeout()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@234
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [SVN] set svn:keywords "Id"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@235
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- make the top of the file sort of standardized
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@236
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] The new file "runsmoke.pl" (not quite
finished yet)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@237
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] testname
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@238
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] --continue
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@239
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_52 2003-06-12T13:34:06+00:00 (c9cf436 => abeltje)
- (abeltje, 17 years ago) * [ADD] --continue
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@168
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typos
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@169
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This is 1.17_52
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@170
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] Revision 166 needed a bit more.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@191
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] Mention --continue
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@192
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] thinko in the MAIL:{} code
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@193
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typos
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@194
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] file with intentions
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@195
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_51 2003-06-06T15:46:02+00:00 (b030dee => abeltje)
- (abeltje, 17 years ago) * [FIX] do not count F<mktest.out> as MISSING
from MANIFEST
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@156
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Mention the {killtime} feature
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@157
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Start a new ReleaseNotes file for 1.18
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@158
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [MERGE] $Id$ and svn::Keywords "Id"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@159
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Set $Id$ and svn:keywords "Id"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@160
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- - Default values in prompt()
- - Single-space input means empty-value in prompt()
- - Typo in {killtime} message
- [ADD]
- Support for MIME::Lite (at last)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@164
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- - Passing a hashref to new() will directly initialize the
serialized list
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@166
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- - "make distclean" for {fdir} as before
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@167
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17_50 2003-05-18T11:45:03+00:00 (c0be61a => abeltje)
- (abeltje, 17 years ago) * [CHANGE] Added run_smoke() as a replacement
for mktest.pl
- - This uses Test::Smoke::BuildCFG to handle the build
configurations
- - This uses Test::Smoke::Smoker to handle the actual smoking
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@137
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Move the distribution to a configurable
directory
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@138
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- - prepare F<configsmoke.pl> for the new Test::Smoke::Smoker
- - take out the call to F<mktest.pl> in F<smokeperl.pl> and use
Test::Smoke::run_smoke
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@139
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- Add the standard OPTIONS section
- - Get {w32make} from the new _config format
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@140
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] {mail} option to F<configsmoke.pl>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@152
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Make the Test::Smoke::Smoker object a true
replacement for F<mktest.pl>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@153
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Add the version of the that runs us
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@154
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.17 2003-04-21T00:34:48+00:00 (aad9e44 => abeltje)
- (abeltje, 17 years ago) Update version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@97
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) At last: This is REV-1.17
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@98
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- - {sync_type} default setting from older config file was not taken
over
- - You need to change drive on Win32 when installed on another
drive
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@100
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] we want to see {gccversion}
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@103
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
Test::Smoke::SourceTree::copy_from_MANIFEST()
- - I found I had to unlink existing destinations files before
copying
- - I also needed to enforce source file file-mode
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@105
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] write_bat()
- - chdir before testing/writing the lockfile!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@111
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] copy_from_MANIFEST()
- - checked the wrong directory
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@122
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] more write_bat() trouble
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@124
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] OO interface to the build configurations
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@129
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- - check_MANIFEST() now takes a list of extra files
- - clean_from_MANIFEST() now takes a list of extra files
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@130
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] test the new parameters for
Test::Smoke::SourceTree::check_MANIFEST()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@131
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- Test::Smoke::BuildCFG
- Test::Smoke::Smoker
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@132
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] Add some verbosity
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@133
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] OO interface to do one smoke cycle
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@134
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [RENAME] that was a silly typo
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@135
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE] Configure_win32() now returns the
name of the makefile
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@136
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.16_30 2003-03-14T21:12:08+00:00 (e87d157 => abeltje)
- (abeltje, 17 years ago) VERSION = 1.16_30
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@74
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- - Specify the number of tests
- - Resolve Windows issues with unescaped paths
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@75
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This is REV-1_16_30
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@76
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) F<svnchanges.pl> did not do its work
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@79
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- - New rule for cygwin in C<Test::Smoke::skip_filter()>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@81
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] Change no_plan to the actual number of
tests
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@82
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] escape dots in regexen!
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@83
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] get_smoked_Config()
- - There is a problem with cygwin line-endings
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@84
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Add more questions and answers
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@85
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Add F<FAQ.pod> to the list of files to be
checked
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@86
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] "deeper" cleaning of *~
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@87
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] get_ncpu(): POSIX::uname() returns
"sunos" not "solaris"
- [FIX] get_smoked_Config(): update the POD to reflect reality
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@88
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- The --[no]mail option
- The --[no]report option to force creation of a new report
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@89
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * Changed the report header a bit to fit the
Sys::Hostname::hostname() in
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@90
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [REMOVE]
- All -Duse64bitall in the build-configurations.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@92
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- - Small changes to make the output more useful
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@93
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [CHANGE]
- - Be more sensible about accepting the builddirectory
- - Save the 'renice' and 'umask' value in the config file
- - Implement some sort of locking in the shell script
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@94
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Update version
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@95
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Update version information
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@96
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.16_25 2003-03-11T06:28:49+00:00 (27a1448 => abeltje)
- (abeltje, 17 years ago) * Get the name section right
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@58
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- - Typo in 'df_sendmailbin' [Thanks to Jos Boumans]
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@60
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX]
- - Old 'patch' programs don't know about '--verbose'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@61
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] {sfile} field for snapshots (named
snapshot)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@62
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] thinko in the handling of the configfile
settings
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@63
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD]
- - detect if a report is already in place,
- otherwise call F<mkovz.pl> (helps if you break off a smoke)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@64
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * More enhancements:
- - Ask for perl_version early and set defaults
- - No need for the silly 'is56x' question
- - F<smoke5?x_dfconfig> now only holds 'perl_version'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@65
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] F<Changes> generated from Subversion
(Keep CVS F<ChangeLog>)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@66
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typo in filename
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@67
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] typo
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@68
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * 'make install' now works the way I wanted it.
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@69
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * This should be 1.17-RC1
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@70
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Cope with the new F<Makefile.PL>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@71
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [FIX] unescaped $ instring
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@72
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * [ADD] F<FAQ.pod>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@73
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.16_24 2003-03-09T18:43:48+00:00 (fbe13d4 => abeltje)
- (abeltje, 17 years ago) New file to keep $VERSION central and read the
configuration
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@25
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Tests for lib/Test/Smoke.pm
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@26
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Tests for the new *_regen_headers routines in
Test::Smoke::Util (change 18852)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@27
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added C<get_regen_headers()> and
C<run_regen_headers()> (change 18852)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@28
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Use the new *_regen_headers routines in
Test::Smoke::Util (change 18852)
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@29
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Forgot to add it to the repository
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@30
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Tests for get_smoked_Config()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@31
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- -c without argument now assumes 'smokecurrent_config'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@32
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- -c without argument now assumes 'smokecurrent_config'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@33
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- -c without argument now assumes 'smokecurrent_config'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@34
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- -c without argument now assumes 'smokecurrent_config'
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@35
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Small POD changes
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@36
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added F<lib/Test/Smoke.pm>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@37
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) New naming scheme
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@38
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) restore the original
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@39
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) More $ENV{LC_ALL} fiddling
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@40
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@41
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * FIX: The default syncer must exist!
- Added more explanation to some questions
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@42
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Now uses Test::Smoke
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@43
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This is REV-1_16_24
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@44
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Skip patch_a_snapshot() unless patch is found
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@54
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Add Jos Boumans to the list of insperators
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@56
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) * FIX: rt-ticket 2202:
- - "require File::Copy;" was missing from copy_from_MANIFAST()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@57
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
1.16_21 2003-03-05T20:03:42+00:00 (741b4f7 => abeltje)
- (abeltje, 17 years ago) Initial import
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@1
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This is REV-1_16_22
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@2
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This is REV-1_16_22
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@3
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This used to be "smokew32.cfg"
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@4
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) smokew32.cfg is now known as w32current.cfg
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@5
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) smokew32.cfg is now known as w32current.cfg
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@6
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) smokew32.cfg is now known as w32current.cfg
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@7
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) smokew32.cfg is now known as w32current.cfg
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@8
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added -Accflags=... for Config_win32()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@9
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added -Accflags=... for Config_win32()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@10
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added -Accflags=... for Config_win32()
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@11
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) run "regen_headers.pl" after PATCHTREE on win32
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@12
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) smokew32.cfg is now known as w32current.cfg
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@13
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) New simple OO FTP-mirror client
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@14
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) FIX: $ENV{PERL_UNICODE}
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@15
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) This is REV-1_16_22
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@16
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added some echo commands to make it clearer
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@17
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) More echo comments
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@18
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Added F<t/regenstuff.t>
- Added F<lib/Test/Smoke.pm> and F<t/ts_config.t>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@23
f9e6db9c-56bf-0310-a82a-abbfb51efdf0
- (abeltje, 17 years ago) Introduced F<lib/Test/Smoke.pm>
- git-svn-id: https://source.test-smoke.org/svn/Test-Smoke@24
f9e6db9c-56bf-0310-a82a-abbfb51efdf0