Index: tests/pkgconfig.test ================================================================== --- tests/pkgconfig.test +++ tests/pkgconfig.test @@ -16,11 +16,11 @@ package require tcltest 2.2 namespace import ::tcltest::* eval tcltest::configure $argv tcltest::loadTestedCommands -test pkgconfig-1.1 {query keys} { +test pkgconfig-1.1 {query keys} nonwin { lsort [::tk::pkgconfig list] } [list \ 64bit bindir,install bindir,runtime debug demodir,install demodir,runtime \ docdir,install docdir,runtime fontsystem includedir,install includedir,runtime \ libdir,install libdir,runtime mem_debug optimized profiled \ @@ -29,12 +29,12 @@ test pkgconfig-1.2 {query keys multiple times} { string compare [::tk::pkgconfig list] [::tk::pkgconfig list] } 0 test pkgconfig-1.3 {query value multiple times} { string compare \ - [::tk::pkgconfig get bindir,install] \ - [::tk::pkgconfig get bindir,install] + [::tk::pkgconfig get 64bit] \ + [::tk::pkgconfig get 64bit] } 0 test pkgconfig-2.0 {error: missing subcommand} { catch {::tk::pkgconfig} msg