From edcd32dbf1e32d8a033c824ceabff77dae17db59 Mon Sep 17 00:00:00 2001 From: Sergey Dolin Date: Fri, 17 Jun 2022 13:55:32 +0200 Subject: [PATCH] Check tcltk for any platform and version --- tests/python-tests.ps1 | 15 +++++++-------- tests/sources/{tcltk-86.py => tcltk.py} | 7 +++---- 2 files changed, 10 insertions(+), 12 deletions(-) rename tests/sources/{tcltk-86.py => tcltk.py} (53%) diff --git a/tests/python-tests.ps1 b/tests/python-tests.ps1 index bc463e2..974cccb 100644 --- a/tests/python-tests.ps1 +++ b/tests/python-tests.ps1 @@ -49,6 +49,13 @@ Describe "Tests" { "python ./sources/simple-test.py" | Should -ReturnZeroExitCode } + # linux has no display name and no $DISPLAY environment variable - skip tk test + if (-not (($Platform -match "ubuntu") -or ($Platform -match "linux"))) { + It "Check if tcl/tk has the same headed and library versions" { + "python ./sources/tcltk.py" | Should -ReturnZeroExitCode + } + } + if (($Version -ge "3.2.0") -and -not ([semver]"$($Version.Major).$($Version.Minor)" -eq [semver]"3.11" -and $Version.PreReleaseLabel)) { It "Check if sqlite3 module is installed" { "python ./sources/python-sqlite3.py" | Should -ReturnZeroExitCode @@ -89,12 +96,4 @@ Describe "Tests" { "./dist/simple-test" | Should -ReturnZeroExitCode } } - - if (($Platform -match "macos") -or ($Platform -match "darwin")) { - if ($Version -gt "3.7.12" ) { - It "Check if python above 3.7.12 use tcl/tk v8.6" { - "python ./sources/tcltk-86.py" | Should -ReturnZeroExitCode - } - } - } } diff --git a/tests/sources/tcltk-86.py b/tests/sources/tcltk.py similarity index 53% rename from tests/sources/tcltk-86.py rename to tests/sources/tcltk.py index 4ff04bb..292d9e9 100644 --- a/tests/sources/tcltk-86.py +++ b/tests/sources/tcltk.py @@ -4,8 +4,7 @@ import _tkinter header = _tkinter.TK_VERSION lib = tkinter.Tk().getvar('tk_version') -print('header version=' + header) -print('lib version=' + lib) - -if lib != '8.6' or header != '8.6': +if lib != header: + print('header version=' + header) + print('lib version=' + lib) exit(1)