#%Module
if {![info exists env(TESTSUITE_SUPER_STICKY)]} {
    set tag sticky
} else {
    set tag super-sticky
}


if {![info exists env(TESTSUITE_STICKY_GENERIC)]} {

    module-tag $tag sticky/1.0
    module-tag sticky sticky/2.0
    module-tag super-sticky sticky/2.0 sticky/3.0

} else {

    switch -- $env(TESTSUITE_STICKY_GENERIC) {
        1 {
            module-tag $tag sticky
        }
        2 {
            module-tag $tag sticky/1.0 sticky
        }
        3 {
            module-tag super-sticky sticky
            module-tag sticky sticky/1.0
        }
        4 {
            module-tag sticky sticky
            module-tag super-sticky sticky/1.0
        }
        5 {
            module-tag sticky sticky
            module-tag super-sticky sticky
        }
    }

}
