mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Merge commit 'debian-tor-0.2.2.4-alpha-1'
This commit is contained in:
commit
c97a4878af
12
debian/changelog
vendored
12
debian/changelog
vendored
@ -1,3 +1,15 @@
|
||||
tor (0.2.2.4-alpha-1) experimental; urgency=low
|
||||
|
||||
* New upstream version.
|
||||
* The testsuite moved from src/or/test to src/test/test,
|
||||
but let's call it using "make check" now.
|
||||
* Upstream failed to ship src/test/test.h. Ship it in debian/ and
|
||||
manually copy it in place during configure and clean up in clean.
|
||||
Let's not use the patch system as this will most likely be rectified
|
||||
by next release.
|
||||
|
||||
-- Peter Palfrader <weasel@debian.org> Sun, 11 Oct 2009 10:38:55 +0200
|
||||
|
||||
tor (0.2.2.3-alpha-1) experimental; urgency=low
|
||||
|
||||
* New upstream version.
|
||||
|
17
debian/rules
vendored
17
debian/rules
vendored
@ -66,6 +66,11 @@ endif
|
||||
|
||||
configure: patch-stamp
|
||||
config.status: configure
|
||||
# clean up test.h stuff. XXX - expected to no longer be needed after tor-0.2.2.4-alpha
|
||||
rm -f src/test/test.h.orig
|
||||
! [ -e src/test/test.h ] || mv src/test/test.h src/test/test.h.orig
|
||||
cp debian/src-test-test.h src/test/test.h
|
||||
|
||||
@if [ "$(LOCALHOST_IP)" != "127.0.0.1" ]; then echo; echo; echo; echo; echo; echo "######################################################################"; echo "WARNING: This system does not think localhost is 127.0.0.1. Will ignore result of testsuite. Please fix your system/chroot."; echo "######################################################################"; echo; echo; echo; echo; echo "Note: 'getent hosts localhost' should return '127.0.0.1 localhost'"; echo; fi
|
||||
dh_testdir
|
||||
CFLAGS="$(CFLAGS)" ./configure \
|
||||
@ -91,11 +96,11 @@ build-stamp: config.status
|
||||
@if [ "$(RUN_TEST)" != "no" ]; then \
|
||||
if [ "$(LOCALHOST_IP)" != "127.0.0.1" ]; then \
|
||||
echo; echo; echo "######################################################################"; echo "WARNING: This system does not think localhost is 127.0.0.1. Will ignore result of testsuite. Please fix your system/chroot."; echo "######################################################################"; echo; echo; \
|
||||
echo "src/or/test || true"; \
|
||||
src/or/test || true; \
|
||||
echo "make check || true"; \
|
||||
make check || true; \
|
||||
else \
|
||||
echo "src/or/test"; \
|
||||
src/or/test; \
|
||||
echo "make check"; \
|
||||
make check; \
|
||||
fi; \
|
||||
else \
|
||||
echo -e "\n\nSkipping unittests\n\n"; \
|
||||
@ -135,6 +140,10 @@ clean: unpatch
|
||||
|
||||
[ ! -f Makefile ] || $(MAKE) distclean
|
||||
|
||||
# clean up test.h stuff. XXX - expected to no longer be needed after tor-0.2.2.4-alpha
|
||||
rm -f src/test/test.h
|
||||
! [ -e src/test/test.h.orig ] || mv src/test/test.h.orig src/test/test.h
|
||||
|
||||
# Normally the .deb wouldn't ship with a ../.git
|
||||
if [ -d .git ] && which git >/dev/null; then \
|
||||
echo "\"`git rev-parse --short=16 HEAD`\"" > "debian/micro-revision.i" ; \
|
||||
|
75
debian/src-test-test.h
vendored
Normal file
75
debian/src-test-test.h
vendored
Normal file
@ -0,0 +1,75 @@
|
||||
/* Copyright (c) 2001-2003, Roger Dingledine.
|
||||
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
||||
* Copyright (c) 2007-2009, The Tor Project, Inc. */
|
||||
/* See LICENSE for licensing information */
|
||||
|
||||
#ifndef _TOR_TEST_H
|
||||
#define _TOR_TEST_H
|
||||
|
||||
/**
|
||||
* \file test.h
|
||||
* \brief Macros and functions used by unit tests.
|
||||
*/
|
||||
|
||||
#include "compat.h"
|
||||
#include "tinytest.h"
|
||||
#define TT_EXIT_TEST_FUNCTION STMT_BEGIN goto done; STMT_END
|
||||
#include "tinytest_macros.h"
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define PRETTY_FUNCTION __PRETTY_FUNCTION__
|
||||
#else
|
||||
#define PRETTY_FUNCTION ""
|
||||
#endif
|
||||
|
||||
#define test_fail_msg(msg) TT_DIE((msg))
|
||||
|
||||
#define test_fail() test_fail_msg("Assertion failed.")
|
||||
|
||||
#define test_assert(expr) tt_assert(expr)
|
||||
|
||||
#define test_eq(expr1, expr2) tt_int_op((expr1), ==, (expr2))
|
||||
#define test_eq_ptr(expr1, expr2) tt_ptr_op((expr1), ==, (expr2))
|
||||
#define test_neq(expr1, expr2) tt_int_op((expr1), !=, (expr2))
|
||||
#define test_neq_ptr(expr1, expr2) tt_ptr_op((expr1), !=, (expr2))
|
||||
#define test_streq(expr1, expr2) tt_str_op((expr1), ==, (expr2))
|
||||
#define test_strneq(expr1, expr2) tt_str_op((expr1), !=, (expr2))
|
||||
#define test_streq(expr1, expr2) tt_str_op((expr1), ==, (expr2))
|
||||
|
||||
#define test_mem_op(expr1, op, expr2, len) \
|
||||
tt_assert_test_fmt_type(expr1,expr2,#expr1" "#op" "#expr2, \
|
||||
const char *, \
|
||||
(memcmp(_val1, _val2, len) op 0), \
|
||||
char *, "%s", \
|
||||
{ size_t printlen = (len)*2+1; \
|
||||
_print = tor_malloc(printlen); \
|
||||
base16_encode(_print, printlen, _value, \
|
||||
(len)); }, \
|
||||
{ tor_free(_print); } \
|
||||
);
|
||||
|
||||
#define test_memeq(expr1, expr2, len) test_mem_op((expr1), ==, (expr2), len)
|
||||
#define test_memneq(expr1, expr2, len) test_mem_op((expr1), !=, (expr2), len)
|
||||
|
||||
/* As test_mem_op, but decodes 'hex' before comparing. There must be a
|
||||
* local char* variable called mem_op_hex_tmp for this to work. */
|
||||
#define test_mem_op_hex(expr1, op, hex) \
|
||||
STMT_BEGIN \
|
||||
size_t length = strlen(hex); \
|
||||
tor_free(mem_op_hex_tmp); \
|
||||
mem_op_hex_tmp = tor_malloc(length/2); \
|
||||
tor_assert((length&1)==0); \
|
||||
base16_decode(mem_op_hex_tmp, length/2, hex, length); \
|
||||
test_mem_op(expr1, op, mem_op_hex_tmp, length/2); \
|
||||
STMT_END
|
||||
|
||||
#define test_memeq_hex(expr1, hex) test_mem_op_hex(expr1, ==, hex)
|
||||
|
||||
const char *get_fname(const char *name);
|
||||
crypto_pk_env_t *pk_generate(int idx);
|
||||
|
||||
void legacy_test_helper(void *data);
|
||||
extern const struct testcase_setup_t legacy_setup;
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user