Overview
| Comment: | Updated to allow user to specify mountpoint at compile-time |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2139fe19a8d82b023277ab2769181a7a |
| User & Date: | rkeene on 2019-09-18 05:30:25.804 |
| Other Links: | manifest | tags |
Context
|
2019-09-20
| ||
| 14:53 | Updated minirivet to support outputting to a variable or a different channel check-in: b07616bee9 user: rkeene tags: trunk | |
|
2019-09-18
| ||
| 05:30 | Updated to allow user to specify mountpoint at compile-time check-in: 2139fe19a8 user: rkeene tags: trunk | |
| 05:26 | Updated to support overriding the mountpoint being used by the test program check-in: 57c553f477 user: rkeene tags: trunk | |
Changes
Modified Makefile
from [54a76794b5]
to [a677a5fe5b].
1 | 1 2 3 4 5 6 7 8 9 10 | + - + | TCL_CONFIG_SH := /usr/lib64/tclConfig.sh XVFS_ROOT_MOUNTPOINT := //xvfs:/ |
| ︙ | |||
46 47 48 49 50 51 52 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | - - + + | benchmark: $(MAKE) clean all XVFS_ADD_CPPFLAGS="-UXVFS_DEBUG" XVFS_ADD_CFLAGS="-g0 -ggdb0 -s -O3" ./benchmark.tcl test: example-standalone$(LIB_SUFFIX) xvfs$(LIB_SUFFIX) example-client$(LIB_SUFFIX) example-flexible$(LIB_SUFFIX) Makefile rm -f __test__.tcl |
| ︙ |
Modified example/main.tcl
from [7c5b926b51]
to [473c237929].
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + - + |
#! /usr/bin/env tclsh
package require tcltest
tcltest::testConstraint tcl87 [string match "8.7.*" [info patchlevel]]
tcltest::configure -verbose pbse
tcltest::configure {*}$argv
if {![info exists ::env(XVFS_ROOT_MOUNTPOINT)]} {
|
| ︙ |