mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 00:26:16 +03:00
Preparations for 0.9.8 release
This commit is contained in:
6
NEWS
6
NEWS
@@ -1,3 +1,9 @@
|
||||
Since 0.9.7:
|
||||
- Passthrough for unknown clock ids to avoid error messages
|
||||
- Fixes for multithreaded operations (mliertzer, qnox)
|
||||
- glibc-related fixes (jprjr) and gcc8 support (tpetazzoni)
|
||||
- Improved error message output on parsing errors
|
||||
|
||||
Since 0.9.6:
|
||||
- Julien Gilli added an option to disable monotonic time faking
|
||||
- Azat Khuzhin added support for COARSE clocks
|
||||
|
||||
4
README
4
README
@@ -1,5 +1,5 @@
|
||||
libfaketime, version 0.9.7 (November 2017)
|
||||
==========================================
|
||||
libfaketime, version 0.9.8 (August 2019)
|
||||
========================================
|
||||
|
||||
|
||||
Content of this file:
|
||||
|
||||
9
TODO
9
TODO
@@ -1,9 +1,10 @@
|
||||
Open issues / next steps for libfaketime development
|
||||
|
||||
- support interception of further system calls, e.g. clock_nanosleep (#105),
|
||||
walltime (#195), chrono::system_clock::now (#176), select (#115)
|
||||
|
||||
- fake timer_create and friends
|
||||
- add more functional tests that check more than the basic functionality
|
||||
- use the testing framework to also implement unit tests
|
||||
- fake timer_create and friends
|
||||
- work around thread local storage issue, e.g., by using pthreads
|
||||
- add autoconf/automake support to get rid of separate Makefile.OSX
|
||||
- improve pthread support
|
||||
|
||||
- integrate manchicken's autoconf/automake support to get rid of separate Makefile.OSX
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.TH FAKETIME "1" "November 2017" "faketime 0.9.7" wolfcw
|
||||
.TH FAKETIME "1" "August 2019" "faketime 0.9.8" wolfcw
|
||||
.SH NAME
|
||||
faketime \- manipulate the system time for a given command
|
||||
.SH SYNOPSIS
|
||||
|
||||
@@ -39,7 +39,7 @@ INSTALL ?= install
|
||||
PREFIX ?= /usr/local
|
||||
|
||||
CFLAGS += -DFAKE_SLEEP -DFAKE_INTERNAL_CALLS -DPREFIX='"'${PREFIX}'"'
|
||||
LIB_LDFLAGS += -dynamiclib -current_version 0.9.7 -compatibility_version 0.7
|
||||
LIB_LDFLAGS += -dynamiclib -current_version 0.9.8 -compatibility_version 0.7
|
||||
|
||||
SONAME = 1
|
||||
LIBS = libfaketime.${SONAME}.dylib
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* libfaketime wrapper command
|
||||
*
|
||||
* This file is part of libfaketime, version 0.9.7
|
||||
* This file is part of libfaketime, version 0.9.8
|
||||
*
|
||||
* libfaketime is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License v2 as published by the
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* This file is part of libfaketime, version 0.9.7
|
||||
* This file is part of libfaketime, version 0.9.8
|
||||
*
|
||||
* libfaketime is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License v2 as published by the
|
||||
|
||||
Reference in New Issue
Block a user