[Pharo-project] Tests Guard report for 20132
Tests Guard report for 20132 http://code.google.com/p/pharo/w/edit/TestsGuard Firstly good news: - we have working 2.0 builds and tests again - this tests are green again: * RPackage.Tests.RPackageWithDoTest.testWithDoIsCorrectlyReinstallingDefault * RPackage.Tests.RPackageWithDoTest.testWithDoIsCorrectlyReinstallingDefaultEvenIfHalt * Tests.SystemChangeNotification.ChangeHooksTest.testClassRecategorizedEvent1 and now bad news, as expected we have a lot of new failing tests: * CompressionTests.Archive.ZipArchiveTest.testCreateWithRelativeNames * CompressionTests.Archive.ZipArchiveTest.testFilePermissions * CompressionTests.Archive.ZipArchiveTest.testZip * FileSystem.Tests.Disk.DiskFileSystemTest.testRootIsNotAFile * Gofer.Tests.GoferApiTest.testDirectoryRepository * Gofer.Tests.GoferApiTest.testSubDirectoryRepository * RPackage.Tests.RPackageImportFromPackageInfoTest.testImportExtensionFromParentPackageRegisterExtensionInParentPackage * SUnit.Tests.Core.SUnitTest.testDialectLocalizedException * SUnit.Tests.Core.TestCaseTest.testAssertEqualsActualAndExpectedOrder * Tests.Monticello.MCFileInTest.testStWriter * Tests.Monticello.MCMczInstallerTest.testInstallFromFile * Tests.Monticello.MCMczInstallerTest.testInstallFromStream * Tests.Monticello.MCMethodDefinitionTest.testCannotLoad * Tests.Monticello.MCMethodDefinitionTest.testComparison * Tests.Monticello.MCMethodDefinitionTest.testLoadAndUnload * Tests.Monticello.MCMethodDefinitionTest.testPartiallyRevertOverrideMethod * Tests.Monticello.MCMethodDefinitionTest.testRevertOldMethod * Tests.Monticello.MCMethodDefinitionTest.testRevertOverrideMethod * Tests.System.SmalltalkImageTest.testImageName * Tests.Traits.TraitTest.testTraitsMethodClassSanity ...and a lot of new Linux specific failing tests: * CompressionTests.Archive.ZipArchiveTest.testAddNonExistentFile * CompressionTests.Archive.ZipArchiveTest.testDate29Feb2000 * CompressionTests.Archive.ZipArchiveTest.testPackDate * CompressionTests.Archive.ZipArchiveTest.testPackTime * CompressionTests.Archive.ZipArchiveTest.testSetLastModification * CompressionTests.Archive.ZipArchiveTest.testUnpackDate * CompressionTests.Archive.ZipArchiveTest.testUnpackTime * FileSystem.Tests.Core.FileReferenceTest.testRename * FileSystem.Tests.Disk.DiskFileSystemTest.testCreateDirectoryNoParent * FileSystem.Tests.Disk.DiskFileSystemTest.testEnsureDirectory * FileSystem.Tests.Disk.DiskFileSystemTest.testEnsureDirectoryCreatesParent * FileSystem.Tests.Disk.DiskFileSystemTest.testFileNames * FileSystem.Tests.Disk.DiskFileSystemTest.testReadStreamDoIfAbsent * FileSystem.Tests.Disk.DiskFileSystemTest.testReadStreamIfAbsent * FileSystem.Tests.Disk.DiskFileSystemTest.testWriteStreamDoIfPresent * FileSystem.Tests.Disk.DiskFileSystemTest.testWriteStreamIfPresent * FileSystem.Tests.Disk.FileHandleTest.testEnsureClosed * Graphics.Tests.Files.PNGReadWriterTest.test1BitColors * Graphics.Tests.Files.PNGReadWriterTest.test2BitColors * Graphics.Tests.Files.PNGReadWriterTest.test4BitColors * Graphics.Tests.Files.PNGReadWriterTest.test8BitColors * Multilingual.Tests.TextConversion.MultiByteFileStreamTest.testBasicChunk * Multilingual.Tests.TextConversion.MultiByteFileStreamTest.testBinaryUpTo * Tests.System.CommandLine.BasicCodeLoaderTest.testInstallSourceFilesFail Cheers, -- Pavel
Pavel Krivanek-3 wrote
and now bad news, as expected we have a lot of new failing tests: FileSystem.Tests.Disk.DiskFileSystemTest.testRootIsNotAFile
DiskStore>>isFile: ... aPath isRoot ifTrue: [ ^ true ]. easy fix, but which is wrong - the test or the implementation? Pavel Krivanek-3 wrote
* SUnit.Tests.Core.TestCaseTest.testAssertEqualsActualAndExpectedOrder
OMG! This one won't die!! It's so confusing, even the bug reports are unintelligible :) But it should be fixed with the slice below... Here's an issue: Issue 6069: Test guard for 20132 http://code.google.com/p/pharo/issues/detail?id=6069 And here is a slice with most of the tests passing (don't know about the linux ones). They were mostly related to FS-everywhere: Fix in inbox: SLICE-Issue-6069-Test-guard-for-20132-SeanDeNigris.1 Make the following tests pass (per http://forum.world.st/Tests-Guard-report-for-20132-td4634905.html): * CompressionTests.Archive.ZipArchiveTest.testCreateWithRelativeNames * CompressionTests.Archive.ZipArchiveTest.testFilePermissions * CompressionTests.Archive.ZipArchiveTest.testZip * Gofer.Tests.GoferApiTest.testDirectoryRepository * Gofer.Tests.GoferApiTest.testSubDirectoryRepository * SUnit.Tests.Core.TestCaseTest.testAssertEqualsActualAndExpectedOrder * Tests.Monticello.MCFileInTest.testStWriter * Tests.Monticello.MCMczInstallerTest.testInstallFromFile * Tests.Monticello.MCMczInstallerTest.testInstallFromStream * Tests.Monticello.MCMethodDefinitionTest.testCannotLoad * Tests.Monticello.MCMethodDefinitionTest.testComparison * Tests.Monticello.MCMethodDefinitionTest.testLoadAndUnload * Tests.Monticello.MCMethodDefinitionTest.testPartiallyRevertOverrideMethod * Tests.Monticello.MCMethodDefinitionTest.testRevertOldMethod * Tests.Monticello.MCMethodDefinitionTest.testRevertOverrideMethod * Tests.System.SmalltalkImageTest.testImageName Easy to fix, pending question: * FileSystem.Tests.Disk.DiskFileSystemTest.testRootIsNotAFile DiskStore>>isFile: ... aPath isRoot ifTrue: [ ^ true ]. easy fix, but which is wrong - the test or the implementation? Remaining to be fixed: * RPackage.Tests.RPackageImportFromPackageInfoTest.testImportExtensionFromParentPackageRegisterExtensionInParentPackage * SUnit.Tests.Core.SUnitTest.testDialectLocalizedException * Tests.Traits.TraitTest.testTraitsMethodClassSanity -- View this message in context: http://forum.world.st/Tests-Guard-report-for-20132-tp4634905p4635064.html Sent from the Pharo Smalltalk mailing list archive at Nabble.com.
participants (2)
-
Pavel Krivanek -
Sean P. DeNigris