aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
AgeCommit message (Collapse)Author
2015-04-25ENV.deparallelize: add block form for temporary changeMisty De Meo
Closes #39026.
2015-04-24hardware: correctly detect early 2015 MacBook Pro.enami tsugutomo
Closes #38996. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-04-23test_pkg_version: remove illegal testcaseXu Cheng
`Version` will not end with /_\d+/. Closes #38822. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-21Remove test that may alter the repositoryJack Nagel
2015-04-20Revert "Use real repo to run tests"Jack Nagel
This reverts commit 5aaf13c6cf784cb4be62932b3e528e8f93580a65.
2015-04-20Use real repo to run testsJack Nagel
2015-04-20Remove assertion that is coupled to test prefix structureJack Nagel
2015-04-20Our internal directory structure is privateJack Nagel
2015-04-19bottle_version: support openssl styleXu Cheng
2015-04-19stop supporting 0_5_0 style bottle versionXu Cheng
The original formula (disco) has been moved to use 0.5.0 style version string. So actually no one is using such style. Stop supporting such style, so it wouldn't be ambiguous with revision part in `Formula#pkg_version`. Closes #38750. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-18Remove bad testJack Nagel
2015-04-15Fix test formula name so it matches the filenameJack Nagel
2015-04-15sandbox: redesign APIXu Cheng
2015-04-13Update test dependenciesJack Nagel
2015-04-09preliminary write control only sandboxXu Cheng
Closes #38361. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-04-07gcc5: add regexDominyk Tiller
Fixes the bottle regex problem seen in https://github.com/Homebrew/homebrew-versions/pull/678. I don’t know whether it’s a good regex, or an awful regex, but it works and passes `brew tests` and a bottled install. Open to improvements if anyone has them. Closes #38333. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-04-02Switch PkgVersion to use compositionJack Nagel
Comparing PkgVersion and Version objects can produce nonsensical results. For example, equality is not symmetric: irb(main):002:0> PkgVersion.new("1.0", 0) == Version.new("1.0") => false irb(main):003:0> Version.new("1.0") == PkgVersion.new("1.0", 0) => true Rather than attempt to deal with subclass-superclass equality, let's use composition and punt on the problem altogether.
2015-03-31Fix test.pdfojab
test.pdf wasn't a valid PDF file: >$ mutool info test.pdf >test.pdf: >error: cannot recognize xref format >error: cannot read xref (ofs=406) >error: cannot read xref at offset 406 >warning: trying to repair broken xref Process it with `mutool clean` to fix errors, collapse newlines to reduce size Closes #38194. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-03-29keg: explicitly create cmake dir under libBen Morgan
Packages supporting CMake may install configuration files for use with CMake's find_package command. A recommended location for these is `<prefix>/lib/cmake` which is not unique across packages. This may cause issues for Formula using this location when their Keg is linked. As with pkg-config, explicitly create the `lib/cmake` folder when linking a Keg that has installed folders/files to this location. Also add testcase. Closes #38005. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-03-29bottle_version: support apparix-11-062Xu Cheng
2015-03-26Add tests for cp_path_subJack Nagel
2015-03-26Add test for InstallRenamed on directoriesJack Nagel
2015-03-26Adjust variable in InstallRenamed testJack Nagel
2015-03-26Don't run pathname tests twiceJack Nagel
2015-03-25Get rid of setup_install_test methodJack Nagel
2015-03-25Eliminate chdir from pathname testsJack Nagel
2015-03-25Pull install tests into a separate classJack Nagel
2015-03-25Do less work inside chdir blocksJack Nagel
2015-03-25Parallelize the language module dependency testsJack Nagel
2015-03-18fdk-aac 0.1.4David Christenson
Update to latest stable release, install example AAC encoder, add test with new WAV fixture, modernize. Closes #37654. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-03-15bottle_version: add erlang versions style regex.Mike McQuaid
2015-03-14Switch to a more useful serialization of tap infoJack Nagel
Closes #37383.
2015-03-05checksums: switch to sha256 for bottles and new formulaeDominyk Tiller
Closes #37164. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-03-04move formula_specialties to compatXu Cheng
Closes #37365. Signed-off-by: Xu Cheng <xucheng@me.com>
2015-02-27Update minitestJack Nagel
2015-02-26Remove SourceForge references.Mike McQuaid
It was fun but we just love Bintray more than you. Closes #37211. Closes #37213. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-21Switch to string keysJack Nagel
The OpenStruct initializer accepts both symbols and strings, but any nested hashes will only allow access via string keys, so let's always construct the object with strings for consistency.
2015-02-21Eliminate conditionalJack Nagel
2015-02-21fixtures: add ps and eps filesXu Cheng
Closes #37001 Signed-off-by: Xu Cheng <xucheng@me.com>
2015-02-18Start recording the formula path in the install receiptJack Nagel
Later we can use this information to try and load the formula from the correct source.
2015-02-15Fix another filesystem leak in updater testsJack Nagel
2015-02-08Minimize test JPEG and PNGDavid Christenson
Losslessly compress with jpegoptim and optipng. Closes #36606. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08Add test PDF and SVG.David Christenson
2015-02-01ngircd: system openssl fixDominyk Tiller
Fix for linking into the system OpenSSL, strict audit fixes, and the plist. Closes #36386. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-30Fix more version misdetections for URLs with archsBaptiste Fontaine
Closes #36368. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-28Fix version misdetections for URLs with OS/archsBaptiste Fontaine
Closes #36308. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-03fixtures add test.icoXu Cheng
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-01-03replace fixture png to 8x8 in size and rgb scale colorXu Cheng
Closes #35456. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-01ID3 tags stripped from MP3 test fixtureBaptiste Fontaine
Closes #35427. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-01-01minimal MP3 test file addedBaptiste Fontaine
Closes #35417. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>