aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:36:35 +0800
committerEttore Perazzoli <ettore@src.gnome.org>1999-11-17 23:36:35 +0800
commit753e37deb7611621dfed0b869966cd59dcfa8e2a (patch)
treebc2b83d1878ca54afca857723d9f136e7308e3d3 /tests
parent9663037f6c0daaf03d74c88afb002a6bb33f222b (diff)
downloadgsoc2013-evolution-753e37deb7611621dfed0b869966cd59dcfa8e2a.tar.gz
gsoc2013-evolution-753e37deb7611621dfed0b869966cd59dcfa8e2a.tar.zst
gsoc2013-evolution-753e37deb7611621dfed0b869966cd59dcfa8e2a.zip
Removed the old message composer test.
svn path=/trunk/; revision=1396
Diffstat (limited to 'tests')
-rw-r--r--tests/ui-tests/msg-composer-test.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/tests/ui-tests/msg-composer-test.c b/tests/ui-tests/msg-composer-test.c
deleted file mode 100644
index 8fbf01b5e8..0000000000
--- a/tests/ui-tests/msg-composer-test.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
-
-#include <gnome.h>
-
-#include <camel/camel-data-wrapper.h>
-#include <camel/camel-stream-fs.h>
-#include <camel/camel-stream.h>
-
-#include "e-msg-composer.h"
-
-static void
-send_cb (EMsgComposer *composer,
- gpointer data)
-{
- CamelMimeMessage *message;
- CamelStream *stream;
- gint stdout_dup;
-
- message = e_msg_composer_get_message (composer);
-
- stdout_dup = dup (1);
- stream = camel_stream_fs_new_with_fd (stdout_dup);
- camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message),
- stream);
- camel_stream_close (stream);
-
- gtk_object_unref (GTK_OBJECT (message));
-
-#if 0
- gtk_widget_destroy (GTK_WIDGET (composer));
- gtk_main_quit ();
-#endif
-}
-
-int
-main (int argc, char **argv)
-{
- GtkWidget *composer;
-
- gnome_init ("test", "0.0", argc, argv);
- glade_gnome_init ();
-
- composer = e_msg_composer_new ();
- gtk_widget_show (composer);
-
- gtk_signal_connect (GTK_OBJECT (composer), "send",
- GTK_SIGNAL_FUNC (send_cb), NULL);
-
- gtk_main ();
-
- return 0;
-}
e-check keystore file after creation (#17348)Martin Holst Swende2018-09-204-10/+41 * abi, signer: fix nil dereference in #17633 (#17653) Martin Holst Swende2018-09-191-1/+6 * accounts/abi: fix unpacking of negative int256 (#17583)Diep Pham2018-09-042-3/+30 * all: remove the duplicate 'the' in annotations (#17509)Wenbiao Zheng2018-08-271-2/+2 * accounts: fixed typo (#17421)Sasuke19642018-08-171-1/+1 * backends: configurable gas limit to allow testing large contracts (#17358)Jeff Prestes2018-08-153-17/+19 * accounts/keystore: rename skipKeyFile to nonKeyFile to better reveal the func...Roc Yu2018-08-031-4/+4 * crypto/secp256k1: remove external LGPL dependencies (#17239)Péter Szilágyi2018-07-261-5/+12 * Merge pull request #16734 from reductionista/eip234Péter Szilágyi2018-07-241-11/+21 |\ | * accounts, eth, les: blockhash based filtering on all code pathsPéter Szilágyi2018-07-121-11/+21 * | accounts/abi: refactor Method#Sig() to use index in range iterator directly (...Roc Yu2018-07-191-3/+1 * | accounts: add unit tests for URL (#17182)Roc Yu2018-07-182-3/+99 * | all: switch out defunct set library to different one (#16873)Ralph Caraveo III2018-07-162-15/+15 |/ * accounts: remove deadcode isSigned (#16990)Wenbiao Zheng2018-06-202-26/+0 * accounts/usbwallet: correct comment typo (#16998)Husam Ibrahim2018-06-191-1/+1 * accounts/usbwallet: correct comment typo (#17008)Husam Ibrahim2018-06-191-1/+1 * accounts/keystore: assign schema as const instead of var (#16985)Wenbiao Zheng2018-06-141-1/+1 * core, eth: minor txpool event cleanupsPéter Szilágyi2018-05-181-1/+1 * all: collate new transaction events togetherrjl4934564422018-05-181-1/+1 * accounts/abi: allow abi: tags when unpacking structsGuillaume Ballet2018-05-143-35/+194 * all: get rid of error when creating memory database (#16716)gary rong2018-05-091-1/+1 * core/rawdb: separate raw database access to own package (#16666)Péter Szilágyi2018-05-071-3/+12 * accounts: changed if-else blocks to conform with golint (#16654)GagziW2018-05-032-4/+2 * accounts: golint updates for this or self warning (#16627)kiel barry2018-05-021-4/+4 * build: enable goimports and varcheck linters (#16446)thomasmodeneis2018-04-181-2/+0 * cmd/clef, signer: initial poc of the standalone signer (#16154)Martin Holst Swende2018-04-163-2/+18 * accounts/abi: improve test coverage (#16044)Ricardo Domingos2018-04-045-62/+82 * Merge pull request #16256 from epiclabs-io/unpack_one_arg_eventMartin Holst Swende2018-03-213-19/+62 |\ | * accounts/abi: Modified unpackAtomic to accept struct lvaluesJavier Peletier2018-03-053-19/+49 | * accounts/abi: Add one-parameter event test case from enriquefynn/unpack_one_a...Javier Peletier2018-03-059-139/+435 | |\ | * | accounts/abi: use unpackTuple to unpack event argumentsFynn2018-02-162-2/+15 * | | Merge pull request #15990 from markya0616/sim_backend_block_hashMartin Holst Swende2018-03-191-2/+2 |\ \ \ | * | | accounts/abi, core: add AddTxWithChain in BlockGen for simulationmark.lin2018-01-291-2/+2 * | | | accounts/abi: normalize method name to a camel-case string (#15976)Mark2018-03-072-10/+45 | |_|/ |/| | * | | accounts/abi: Abi binding support for nested arrays, fixes #15648, including ...protolambda2018-03-056-79/+259 * | | eth, les, light: filter on logs only, derive receipts on demandPéter Szilágyi2018-02-231-0/+13 * | | abi: fix missing method on go 1.7/1.8Martin Holst Swende2018-02-211-13/+23 * | | accounts/abi: harden unpacking against malicious inputMartin Holst Swende2018-02-212-4/+83 * | | accounts/abi: address review concernsMartin Holst Swende2018-02-214-352/+5 * | | accounts/abi: Deduplicate code in unpackerMartin Holst Swende2018-02-214-53/+33 * | | accounts/abi: add another unpack interfaceMartin Holst Swende2018-02-215-14/+395 | |/ |/| * | all: update license information (#16089)Felix Lange2018-02-143-3/+3 * | core, trie: intermediate mempool between trie and database (#15857)Péter Szilágyi2018-02-061-4/+10 * | accounts: fix comment typo (#15977)Miguel Mota2018-01-261-1/+1 * | accounts/abi/bind: support event filtering in abigenPéter Szilágyi2018-01-249-34/+914 |/ * all: update generated code (#15808)Felix Lange2018-01-083-1/+5 * all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-036-22/+21 * various: remove redundant parentheses (#15793)Furkan KAMACI2018-01-031-1/+1 * accounts/abi: handle named ouputs prefixed with underscores (#15766)Péter Szilágyi2017-12-304-4/+153 * Merge pull request #15731 from holiman/revamp_abiMartin Holst Swende2017-12-2311-379/+666 |\ | * accounts/abi: merging of https://github.com/ethereum/go-ethereum/pull/15452 +...Martin Holst Swende2017-12-235-47/+128 | * acounts/abi: refactor abi, generalize abi pack/unpack to ArgumentsMartin Holst Swende2017-12-237-251/+260 | * accounts/abi: add unpack into array testRobert Zaremba2017-12-213-2/+17 | * accounts/abi: add Method Unpack testsRobert Zaremba2017-12-211-36/+59 | * accounts/abi: satisfy most of the linter warningsRobert Zaremba2017-12-217-95/+87 | * accounts/abi: fix event unpack into sliceRobert Zaremba2017-12-215-23/+36 | * accounts/abi: fix event tupleUnpackRobert Zaremba2017-12-211-7/+7 | * accounts/abi: adding event unpacker testsRobert Zaremba2017-12-211-0/+154 * | accounts, consensus, core, eth: make chain maker consensus agnostic (#15497)gary rong2017-12-221-3/+3 |/ * Merge pull request #15285 from yondonfu/abi-offset-fixed-arraysMartin Holst Swende2017-12-212-1/+194 |\ | * accounts/abi: update array type check in method.go. Add more packing testsYondon Fu2017-12-192-6/+138 | * Merge branch 'master' into abi-offset-fixed-arraysYondon Fu2017-12-1923-958/+1086 | |\ | * | accounts/abi: include fixed array size in offset for dynamic typeYondon Fu2017-10-122-1/+62 * | | accounts/abi: remove check for len%32==0 when unpacking events (#15670)Bob Glickstein2017-12-213-13/+47 * | | accounts/abi: update array length after parsing array (#15618)Dmitry Shulyak2017-12-204-26/+78 | |/ |/| * | accounts/keystore: Improved error messageArmin2017-12-181-0/+3 * | all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-132-3/+3 * | Merge pull request #15498 from nonsense/account_cache_modtime_test_fixPéter Szilágyi2017-11-241-1/+11 |\ \ | * | accounts/keystore: comments above time.SleepAnton Evangelatov2017-11-161-0/+3 | * | accounts/keystore: change modtime for test cases to be bigger than 1sec.Anton Evangelatov2017-11-161-1/+8 * | | cmd/geth: make geth account new faster with many keys (#15529)Martin Holst Swende2017-11-211-0/+7 * | | accounts/keystore: Ignore initial trigger of rescan-eventMartin Holst Swende2017-11-201-1/+5 * | | accounts/keystore: lock file cache during scan, minor polishPéter Szilágyi2017-11-202-91/+124 * | | accounts: list, then subscribe (sub requires active reader)Péter Szilágyi2017-11-201-5/+5 |/ / * | accounts, internal: fail if no suitable estimated gas found (#15477)gary rong2017-11-151-11/+26 * | build: enable unconvert linter (#15456)ferhat elmas2017-11-111-1/+1 * | all: gofmt -w -s (#15419)ferhat elmas2017-11-082-2/+2 * | cmd, consensus, core, miner: instatx clique for --dev (#15323)Péter Szilágyi2017-10-241-1/+1 * | accounts/abi: improve type handling, add event support (#14743)RJ Catalano2017-10-1715-847/+903 |/ * accounts/keystore: scan key directory without locks held (#15171)Martin Holst Swende2017-10-094-102/+297 * accounts/usbwallet: handle bad interface number on macOSPéter Szilágyi2017-10-031-4/+8 * internal, accounts, eth: utilize vm failed flag to help gas estimationrjl4934564422017-10-021-11/+13 * accounts/abi/backends: add AdjustTime (#15077)Dave Appleton2017-09-151-0/+17 * accounts/abi/bind: pass non-empty directory when calling goimports (#15070)nkbai2017-09-082-2/+2 * core: implement Metropolis EIP 658, receipt status byterjl4934564422017-08-221-1/+2 * core, light: send chain events using event.Feed (#14865)Miya Chen2017-08-181-2/+1 * accounts: refactor API for generalized USB walletsPéter Szilágyi2017-08-0911-1960/+1436 * accounts, console, internal: support trezor hardware walletPéter Szilágyi2017-08-0915-29/+6662 * accounts: fix megacheck warnings (#14903)Egon Elbre2017-08-073-15/+6 * cmd/abigen: update generated go file header text (#14845)Leo Shklovskii2017-07-241-2/+2 * core: remove redundant storage of transactions and receipts (#14801)Péter Szilágyi2017-07-151-1/+2 * tests: update tests and implement general state tests (#14734)Felix Lange2017-07-111-4/+17 * core/state: access trie through Database interface, track errors (#14589)Felix Lange2017-06-271-2/+2 * accounts/abi: reorganizing package with small fixes (#14610)RJ Catalano2017-06-2713-1085/+1487 * accounts: fix spelling error (#14567)FaceHo2017-06-061-1/+1 * accounts/keystore, crypto: don't enforce key checks on existing keyfilesPéter Szilágyi2017-06-012-8/+4 * accounts/keystore, crypto: enforce 256 bit keys on importPéter Szilágyi2017-05-235-7/+11 * all: update license informationFelix Lange2017-04-144-4/+4 * consensus, core, ethstats: use engine specific block beneficiary (#14318)Péter Szilágyi2017-04-121-1/+1 * core, consensus: pluggable consensus engines (#3817)Péter Szilágyi2017-04-051-2/+2 * Merge pull request #3801 from karalabe/ledger-linux-confirmPéter Szilágyi2017-03-282-13/+49 |\ | * accounts/usbwallet: if a confirmation is pending, skip refreshPéter Szilágyi2017-03-232-3/+16 | * accounts/usbwallet: fix Ledger hidapi/libusb protocol violationPéter Szilágyi2017-03-232-13/+36 * | core: refactor genesis handlingFelix Lange2017-03-233-22/+19 |/ * all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-236-6/+6 * accounts/abi/bind: allow client to specify sender address for call (#3782)bas-vk2017-03-162-2/+42 * all: swap out the C++ ethash to the pure Go one (mining todo)Péter Szilágyi2017-03-091-1/+2 * Logger updates 3 (#3730)Péter Szilágyi2017-03-021-0/+9 * Merge pull request #3723 from karalabe/logger-updates-2Péter Szilágyi2017-02-284-16/+16 |\ | * all: next batch of log polishes to contextual versionsPéter Szilágyi2017-02-284-16/+16 * | all: unify big.Int zero checks, use common/math in more places (#3716)Felix Lange2017-02-285-7/+8 |/ * accounts, eth/downloader: use "err" instead of "error" in logsPéter Szilágyi2017-02-274-10/+10 * common: move big integer math to common/math (#3699)Felix Lange2017-02-273-57/+47 * accounts, cmd: port packages over to the new logging systemPéter Szilágyi2017-02-235-29/+36 * all: blidly swap out glog to our log15, logs need reworkPéter Szilágyi2017-02-234-36/+30 * Merge pull request #3681 from karalabe/usb-hidapiNick Johnson2017-02-204-150/+38 |\ | * accounts/usbwallet, vendor: use hidapi instead of libusb directlyPéter Szilágyi2017-02-174-150/+38 * | crypto: add btcec fallback for sign/recover without cgo (#3680)Felix Lange2017-02-181-3/+2 |/ * accounts: ledger and HD review fixesPéter Szilágyi2017-02-134-59/+37 * accounts/usbwallet: detect and report in Ledger is in browser modePéter Szilágyi2017-02-131-4/+17 * accounts/usbwallet: make wallet responsive while Ledger is busyPéter Szilágyi2017-02-131-151/+309 * accounts/usbwallet: Ledger teardown on health-check failurePéter Szilágyi2017-02-132-8/+33 * accounts, cmd, internal, node: implement HD wallet self-derivationPéter Szilágyi2017-02-136-115/+347 * accounts, cmd, internal, mobile, node: canonical account URLsPéter Szilágyi2017-02-1313-93/+174 * accounts, cmd, eth, internal, miner, node: wallets and HD APIsPéter Szilágyi2017-02-1313-565/+1339 * accounts/usbwallet: two phase Ledger refreshes to avoid Windows bugPéter Szilágyi2017-02-131-25/+24 * accounts/usbwallet: support Ledger app version <1.0.2Péter Szilágyi2017-02-131-1/+5 * accounts/usbwallet: skip support on iOS altogetherPéter Szilágyi2017-02-134-0/+44 * accounts/usbwallet: initial support for Ledger walletsPéter Szilágyi2017-02-133-0/+750 * accounts, cmd, eth, internal, mobile, node: split account backendsPéter Szilágyi2017-02-1334-526/+851 * accounts/abi, internal/jsre/deps: gofmt -w -s (#3636)Diego Siqueira2017-02-031-2/+2 * accounts/abi/bind, internal/ethapi: binary search gas estimation (#3587)Péter Szilágyi2017-01-21