diff options
author | fvogel <fvogelnew1@free.fr> | 2019-04-15 17:55:49 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-04-15 17:55:49 (GMT) |
commit | c0ea768836e679bf83ef10912b3ee13fa6da1de9 (patch) | |
tree | 7c0788e5e0ae1268fc384192dfebcc98bc731fc4 | |
parent | 969a623434fafc0d7393a379934cc7472e0819db (diff) | |
download | tk-c0ea768836e679bf83ef10912b3ee13fa6da1de9.zip tk-c0ea768836e679bf83ef10912b3ee13fa6da1de9.tar.gz tk-c0ea768836e679bf83ef10912b3ee13fa6da1de9.tar.bz2 |
Fix [aa846938ef]: pkgconfig tests fail on Windows
-rw-r--r-- | tests/pkgconfig.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/pkgconfig.test b/tests/pkgconfig.test index 1694eea..e080b91 100644 --- a/tests/pkgconfig.test +++ b/tests/pkgconfig.test @@ -18,7 +18,7 @@ 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 \ @@ -31,8 +31,8 @@ test pkgconfig-1.2 {query keys multiple times} { } 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 |